-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (44 loc) · 2.05 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
#!/usr/bin/env python3
# encoding:utf-8
# More on how to configure this file here: https://setuptools.readthedocs.io/en/latest/setuptools.html#metadata
from autopackage.parsers.setup_parser import SetupParser
from setuptools import find_packages
name = 'wireguard-subnets'
version = '1.0.2'
description = "This program performs unattended addition and removal of remote subnets accessible through its `wg` interface " \
"to a WireGuard server's routing table.\nWorks great combined with systemd."
with open("README.md", "r") as fh:
long_description = fh.read()
author = 'Fernando Enzo Guarini'
author_email = '[email protected]'
url = 'https://github.com/fernandoenzo/wireguard-subnets'
download_url = 'https://github.com/fernandoenzo/wireguard-subnets/releases'
packages = find_packages()
licencia = 'AGPLv3+'
zip_safe = True
keywords = 'wireguard net vpn ip link ping route routing subnet'
python_requires = '>=3.7'
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: System :: Networking',
'Topic :: Utilities',
]
entry_points = {
'console_scripts': [
'wireguard-subnets = wireguard_subnets.wireguard_subnets:main',
]
}
SetupParser(name=name, version=version, packages=packages, description=description, long_description=long_description, long_description_content_type="text/markdown", author=author,
author_email=author_email, url=url, download_url=download_url, license=licencia, python_requires=python_requires, keywords=keywords, classifiers=classifiers, entry_points=entry_points,
zip_safe=zip_safe)