-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·26 lines (24 loc) · 894 Bytes
/
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
from setuptools import setup
from wpactrl import version
setup(
name='gevent-wpactrl',
version='%d.%d.%d' % version(),
author='Pontus Karlsson',
author_email='[email protected]',
packages=['wpactrl'],
license='LICENSE',
description='A native implementation of python-wpactrl using gevent.',
long_description=open('README.rst').read(),
url='https://github.com/wolfhechel/gevent-wpactrl',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Networking'
]
)