2016-05-11 15:09:45 -04:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='tsstats',
|
2016-08-09 14:37:20 -04:00
|
|
|
version='0.10.5',
|
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'
|
|
|
|
]
|
|
|
|
},
|
2016-06-07 11:59:02 -04:00
|
|
|
package_data={
|
|
|
|
'tsstats': ['template.html']
|
|
|
|
},
|
2016-06-07 09:44:27 -04:00
|
|
|
install_requires=[
|
|
|
|
'Jinja2>=2.8'
|
|
|
|
],
|
2016-05-11 15:09:45 -04:00
|
|
|
)
|