-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·80 lines (76 loc) · 2.58 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
requires = [
'autobahn',
'crossbar',
'SQLAlchemy-Utils',
'SQLAlchemy==1.3.22',
'psycopg2-binary',
'pyroute2',
'msgpack==1.0.2',
'pysodium',
'python-iptables',
'cryptography>=2.7',
'six>=1.13.0',
]
extras = {
}
setup(name='tunfish',
version='0.1.0',
description='Convenient VPN infrastructure on top of secure WireGuard tunnels',
long_description=README,
license="AGPL 3, EUPL 1.2",
classifiers=[
"Programming Language :: Python 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Topic :: Communications",
"Topic :: Database",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Object Brokering",
"Topic :: System :: Networking",
"Topic :: Utilities",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
],
author='The Tunfish Developers',
author_email='[email protected]',
url='https://github.com/tunfish/tunfish-system',
keywords='',
#package_dir={'': ''},
#packages=find_packages(),
include_package_data=True,
package_data={
},
zip_safe=False,
test_suite='tunfish.test',
install_requires=requires,
extras_require=extras,
dependency_links=[
],
entry_points={
'console_scripts': [
'tf-client = tunfish.main:start_client',
'tf-gateway = tunfish.main:start_gateway',
'tf-server = tunfish.main:start_server',
'tf-ctl = tunfish.main:tf_control',
'tf-web = tunfish.main:tf_web',
],
},
)