mirror of
https://github.com/nikdoof/python-ts3.git
synced 2025-12-16 19:42:22 +00:00
26 lines
697 B
Python
Executable File
26 lines
697 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
from ts3 import __version__
|
|
|
|
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',
|
|
|
|
classifiers=[
|
|
'License :: OSI Approved :: BSD License',
|
|
'Topic :: Internet',
|
|
'Topic :: Communications',
|
|
'Intended Audience :: Developers',
|
|
'Development Status :: 3 - Alpha',
|
|
]
|
|
)
|