2016-05-11 15:09:45 -04:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='tsstats',
|
2017-02-16 16:49:27 -05:00
|
|
|
version='1.1.2',
|
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={
|
2016-11-18 15:55:33 -05:00
|
|
|
'tsstats': ['templates/*.jinja2']
|
2016-06-07 11:59:02 -04:00
|
|
|
},
|
2016-06-07 09:44:27 -04:00
|
|
|
install_requires=[
|
|
|
|
'Jinja2>=2.8'
|
|
|
|
],
|
2016-05-11 15:09:45 -04:00
|
|
|
)
|