-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
52 lines (47 loc) · 1.81 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
import os
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setup_kwargs = {
'name': 'wgfrontend',
'version': '1.0.1',
'author': 'The Towalink Project',
'author_email': 'pypi.wgfrontend@towalink.net',
'description': 'web-based user interface for configuring WireGuard for roadwarriors',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'url': 'https://www.github.com/towalink/wgfrontend',
'packages': setuptools.find_namespace_packages('src'),
'package_dir': {'': 'src'},
'include_package_data': True,
'install_requires': ['cherrypy',
'jinja2',
'qrcode[pil]',
'wgconfig'
],
'entry_points': '''
[console_scripts]
wgfrontend=wgfrontend:main
wgfrontend-password=wgfrontend.pwdtools:hash_password_interactively
''',
'classifiers': [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: POSIX :: Linux',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Intended Audience :: Telecommunications Industry',
'Topic :: System :: Networking'
],
'python_requires': '>=3.6',
'keywords': 'Towalink VPN WireGuard frontend gui',
'project_urls': {
'Project homepage': 'https://www.towalink.net',
'Repository': 'https://www.github.com/towalink/wgfrontend',
'Documentation': 'https://towalink.readthedocs.io',
},
}
if __name__ == '__main__':
setuptools.setup(**setup_kwargs)