-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1.06 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import os
from setuptools import setup
# Utility function to read the README file.
# Used for the long_description.
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "pybpf",
version = "0.1",
author = "Martijn van Oosterhout",
author_email = "[email protected]",
description = ("A BPF assembler, dissembler, executer and debugger in Python"),
license = "BSD",
keywords = "bpf assembler disassembler",
url = "http://packages.python.org/pybpf",
packages=['pybpf', 'tests'],
long_description=read('README.md'),
install_requires=['ply'],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Topic :: Software Development :: Assemblers",
"Topic :: Software Development :: Disassemblers",
"License :: OSI Approved :: BSD License",
],
entry_points={
'console_scripts': [
'bpf = pybpf.main:main',
]
},
)