-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·47 lines (41 loc) · 1.44 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
36
37
38
39
40
41
42
43
44
45
46
47
import os
import sys
from setuptools import setup
# Project Information
dist_name = 'chains'
package_name = 'chains'
description = 'Exploratory Python Chained Generator Project'
with open('README.rst') as f:
long_description = f.read()
scripts = ['scripts/netwatch', 'scripts/urlwatch', 'scripts/weird_dns']
packages = ['chains', 'chains.links', 'chains.sinks', 'chains.sources', 'chains.utils']
requirements = ['pcapy', 'dpkt', 'netifaces']
test_requirements = []
# Pull in the version from the package
package = __import__(package_name)
version = package.__version__
setup(
name=dist_name,
version=package.__version__,
author=package.__author__,
author_email=package.__author_email__,
url=package.__url__,
description=description,
long_description=long_description,
scripts=scripts,
packages=packages,
install_requires=requirements,
license='MIT',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
tests_require=test_requirements
)