mirror of
https://github.com/nikdoof/python-ts3.git
synced 2025-12-17 20:09:23 +00:00
Added README and basic setup
This commit is contained in:
7
README.rst
Normal file
7
README.rst
Normal 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
12
setup.py
Executable 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',],
|
||||
)
|
||||
Reference in New Issue
Block a user