Switch to setuptools

This commit is contained in:
2013-10-27 17:05:40 +00:00
parent b66a8d97c6
commit 7bb9dbf21e
2 changed files with 13 additions and 36 deletions

View File

@@ -1,19 +1,21 @@
#!/usr/bin/env python
from distutils.core import setup
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'],
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 = [
classifiers=[
'License :: OSI Approved :: BSD License',
'Topic :: Internet',
'Topic :: Communications',