TeamspeakStats/setup.py

26 lines
640 B
Python
Raw Permalink Normal View History

2016-05-11 15:09:45 -04:00
from setuptools import setup
setup(
name='tsstats',
2018-01-19 16:28:28 -05:00
version='2.0.0',
2016-05-11 15:09:45 -04:00
author='Thor77',
author_email='thor77@thor77.org',
description='A simple Teamspeak stats-generator',
long_description=open('README.rst').read(),
2016-05-11 15:09:45 -04:00
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=[
2017-08-24 13:36:39 -04:00
'Jinja2>=2.8',
2017-09-05 16:18:04 -04:00
'pendulum==1.2.5'
],
2016-05-11 15:09:45 -04:00
)