forked from nikdoof/python-ts3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (28 loc) · 870 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (28 loc) · 870 Bytes
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
#!/usr/bin/env python
import sys
from setuptools import setup
from ts3 import __version__
tests_require = ['mock']
if sys.version < '2.7':
tests_require.append('unittest2')
tests_require.append('ordereddict')
setup(
name="python-ts3",
version=__version__,
description="TS3 ServerQuery library for Python",
author="Andrew Willaims",
author_email="andy@tensixtyone.com",
url="https://github.com/nikdoof/python-ts3/",
keywords="teamspeak ts3 voice serverquery teamspeak3",
packages=['ts3'],
scripts=['examples/gents3privkey.py'],
test_suite='ts3.test.suite',
tests_require=tests_require,
classifiers=[
'License :: OSI Approved :: BSD License',
'Topic :: Internet',
'Topic :: Communications',
'Intended Audience :: Developers',
'Development Status :: 3 - Alpha',
]
)