-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
44 lines (39 loc) · 1.39 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
import os
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setup_kwargs = {
'name': 'wgconfig',
'version': '1.1.0',
'author': 'Dirk Henrici',
'author_email': 'towalink.wgconfig@henrici.name',
'description': 'parsing and writing WireGuard configuration files',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'url': 'https://www.github.com/towalink/wgconfig',
'packages': setuptools.find_namespace_packages('src'),
'package_dir': {'': 'src'},
'package_data': {
'test': ['test/wgtest1.conf'],
},
'classifiers': [
'Programming Language :: Python',
'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 :: Developers',
'Intended Audience :: Information Technology'
],
'python_requires': '>=2.7',
'extras_require': {
':python_version == "2.7"': ['future']
},
'keywords': 'WireGuard configuration config wg',
'project_urls': {
'Repository': 'https://www.github.com/towalink/wgconfig',
'PyPi': 'https://pypi.org/project/wgconfig/'
},
}
if __name__ == '__main__':
setuptools.setup(**setup_kwargs)