forked from juxor/dhcpcanon_debian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (61 loc) · 2.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
# This file is part of dhcpcanon, a set of scripts to
# use different tor guards depending on the network we connect to.
#
# Copyright (C) 2016 juga (juga at riseup dot net)
#
# dhcpcanon is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License Version 3 of the
# License, or (at your option) any later version.
#
# dhcpcanon is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with dhcpcanon. If not, see <http://www.gnu.org/licenses/>.
#
from setuptools import setup, find_packages
import dhcpcanon
setup(
name='dhcpcanon',
version=dhcpcanon.__version__,
description=dhcpcanon.__description__,
long_description=dhcpcanon.__long_description__,
author=dhcpcanon.__author__,
author_email=dhcpcanon.__author_mail__,
license='GPLv3+',
url=dhcpcanon.__website__,
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
dependency_links=[
"https://pypi.python.org/simple/scapy==2.2.0-dev",
"https://pypi.python.org/simple/netaddr==0.7.10",
"https://pypi.python.org/simple/ipaddr==2.1.11",
"https://pypi.python.org/simple/pytz==2016.6.1",
"https://pypi.python.org/simple/pip==8.1.2",
"https://pypi.python.org/simple/pyroute2==0.4.11"
],
extras_require={
'dev': ['ipython'],
'test': ['coverage'],
},
# entry_points={
# 'console_scripts': [
# 'dhcpcanon = scripts.dhcpcanon:main',
# ]
# },
scripts=['scripts/dhcpcanon'],
keywords='python scapy dhcp RFC7844 RFC2131 anonymity',
classifiers=[
'Development Status :: 3 - Alpha',
"Environment :: Console",
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 ' +
'or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
"Topic :: Software Development :: Libraries :: Python Modules",
],
)