2016-05-11 15:09:45 -04:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='tsstats',
|
2016-05-18 16:40:50 -04:00
|
|
|
version='0.1.1',
|
2016-05-11 15:09:45 -04:00
|
|
|
author='Thor77',
|
|
|
|
author_email='thor77@thor77.org',
|
|
|
|
description='A simple Teamspeak stats-generator',
|
|
|
|
keywords='ts3 teamspeak teamspeak3 tsstats teamspeakstats',
|
|
|
|
url='https://github.com/Thor77/TeamspeakStats',
|
|
|
|
packages=['tsstats'],
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'tsstats = tsstats.__main__:cli'
|
|
|
|
]
|
|
|
|
},
|
|
|
|
install_requires=open('requirements.txt').read()
|
|
|
|
)
|