-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (29 loc) · 969 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
27
28
29
30
31
"""
pysrvx setup
"""
from setuptools import setup
long_description = """\
pysrvx is a pure python client library implementation for the SrvX QServer
module. For more information on SrvX visit http://www.srvx.net
"""
setup(name='pysrvx',
version='0.3',
description='QServer client library',
long_description=long_description,
author='Gavin M. Roy',
author_email='[email protected]',
url='https://github.com/GameSurge/pysrvx/',
packages=['pysrvx'],
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: Mozilla Public License 1.1 (MPL 1.1)',
'Operating System :: OS Independent',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
],
zip_safe=True
)