mirror of
https://github.com/nikdoof/python-ts3.git
synced 2025-12-16 19:42:22 +00:00
13 lines
302 B
Python
Executable File
13 lines
302 B
Python
Executable File
#!/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',],
|
|
)
|