24 lines
566 B
Python
24 lines
566 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name='tsstats',
|
|
version='0.18.0',
|
|
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'
|
|
]
|
|
},
|
|
package_data={
|
|
'tsstats': ['templates/*.jinja2']
|
|
},
|
|
install_requires=[
|
|
'Jinja2>=2.8'
|
|
],
|
|
)
|