-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1.24 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
#!/usr/bin/env python
from distutils.core import setup
setup(name='pyreguard',
version='0.0.0',
description='Wireguard library that uses PyRoute2 or userspace',
author='Steve Kerrison',
author_email='[email protected]',
url='https://github.com/stevekerrison/pyreguard',
license='dual license GPLv2+ and Apache v2',
packages=['pyreguard'],
install_requires=['pyroute2>=0.5.8'],
classifiers=['License :: OSI Approved :: GNU General Public ' +
'License v2 or later (GPLv2+)',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: ' +
'Python Modules',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python :: 3',
'Development Status :: 2 - Pre-Alpha'],
)