Added README and basic setup

This commit is contained in:
2011-03-02 22:35:32 +00:00
parent 6840ec5c31
commit f51fd5b6fe
2 changed files with 19 additions and 0 deletions

7
README.rst Normal file
View File

@@ -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.

12
setup.py Executable file
View File

@@ -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',],
)