mirror of
https://github.com/nikdoof/python-ts3.git
synced 2025-12-17 11:59:27 +00:00
Switch to setuptools
This commit is contained in:
25
setup.cfg
25
setup.cfg
@@ -1,25 +0,0 @@
|
|||||||
[metadata]
|
|
||||||
name = python-ts3
|
|
||||||
version = 0.1
|
|
||||||
author = Andrew Williams
|
|
||||||
author_email = andy@tensixtyone.com
|
|
||||||
summary = Teamspeak 3 Server Query library for Python
|
|
||||||
home_page = https://github.com/nikdoof/python-ts3/
|
|
||||||
description = 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.
|
|
||||||
classifier = Development Status :: 3 - Alpha
|
|
||||||
Natural Language :: English
|
|
||||||
Intended Audience :: System Administrators
|
|
||||||
Intended Audience :: Developers
|
|
||||||
License :: OSI Approved :: BSD License
|
|
||||||
|
|
||||||
[files]
|
|
||||||
packages = ts3
|
|
||||||
scripts = examples/gents3privkey.py
|
|
||||||
extra_files = examples/*
|
|
||||||
setup.py
|
|
||||||
README.rst
|
|
||||||
|
|
||||||
[test]
|
|
||||||
suite = ts3.test.suite
|
|
||||||
24
setup.py
24
setup.py
@@ -1,19 +1,21 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from distutils.core import setup
|
from setuptools import setup
|
||||||
from ts3 import __version__
|
from ts3 import __version__
|
||||||
|
|
||||||
setup(name = "python-ts3",
|
setup(
|
||||||
version = __version__,
|
name="python-ts3",
|
||||||
description = "TS3 ServerQuery library for Python",
|
version=__version__,
|
||||||
author = "Andrew Willaims",
|
description="TS3 ServerQuery library for Python",
|
||||||
author_email = "andy@tensixtyone.com",
|
author="Andrew Willaims",
|
||||||
url = "https://github.com/nikdoof/python-ts3/",
|
author_email="andy@tensixtyone.com",
|
||||||
keywords = "teamspeak ts3 voice serverquery teamspeak3",
|
url="https://github.com/nikdoof/python-ts3/",
|
||||||
packages = ['ts3',],
|
keywords="teamspeak ts3 voice serverquery teamspeak3",
|
||||||
scripts = ['examples/gents3privkey.py'],
|
packages=['ts3'],
|
||||||
|
scripts=['examples/gents3privkey.py'],
|
||||||
|
test_suite='ts3.test.suite',
|
||||||
|
|
||||||
classifiers = [
|
classifiers=[
|
||||||
'License :: OSI Approved :: BSD License',
|
'License :: OSI Approved :: BSD License',
|
||||||
'Topic :: Internet',
|
'Topic :: Internet',
|
||||||
'Topic :: Communications',
|
'Topic :: Communications',
|
||||||
|
|||||||
Reference in New Issue
Block a user