-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (44 loc) · 1.62 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
import os
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setup_kwargs = {
'name': 'towalink_nodeconfig',
'version': '0.1.2',
'author': 'The Towalink Project',
'author_email': 'pypi.nodeconfig@towalink.net',
'description': 'managing the config files and services of a Towalink Node',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'url': 'https://www.towalink.net',
'packages': setuptools.find_packages('src'),
'package_dir': {'': 'src'},
'include_package_data': True,
'install_requires': ['pyyaml',
],
'entry_points': '''
[console_scripts]
nodeconfig=nodeconfig:main
''',
'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 :: 2 - Pre-Alpha',
'Development Status :: 3 - Alpha',
#'Development Status :: 4 - Beta',
#'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology'
],
'python_requires': '>=3.5',
'keywords': 'Towalink VPN SD-WAN WireGuard',
'project_urls': {
'Project homepage': 'https://www.towalink.net',
'Repository': 'https://www.github.com/towalink/tlm',
'Documentation': 'https://towalink.readthedocs.io',
},
}
if __name__ == '__main__':
setuptools.setup(**setup_kwargs)