mirror of
https://github.com/nikdoof/python-ts3.git
synced 2025-12-17 11:59:27 +00:00
14 lines
335 B
Python
Executable File
14 lines
335 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from distutils.core 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/",
|
|
py_modules = ['ts3',],
|
|
)
|