TeamspeakStats/setup.py

26 lines
640 B
Python
Raw Normal View History

2016-05-11 15:09:45 -04:00
from setuptools import setup
setup(
name='tsstats',
2018-05-19 12:10:30 -04:00
version='2.0.1',
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',
2018-05-19 11:49:43 -04:00
'pendulum==1.5.1'
],
2016-05-11 15:09:45 -04:00
)