diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..d9c645a --- /dev/null +++ b/README.rst @@ -0,0 +1,7 @@ +---------- +python-ts3 +---------- + +python-ts3 is a abstraction library around the Teamspeak 3 ServerQuery API. It +allows native access to the ServerQuery API with most of the formatting +headaches avoided. diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..87ba809 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name = "python-ts3", + version = "0.01", + description = "TS3 ServerQuery library for Python", + author = "Andrew Willaims", + author_email = "andy@tensixtyone.com", + url = "https://github.com/nikdoof/python-ts3/", + py_modules = ['ts3',], +)