2016-05-11 21:09:45 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='tsstats',
|
2017-08-24 19:38:44 +02:00
|
|
|
version='1.5.1',
|
2016-05-11 21:09:45 +02:00
|
|
|
author='Thor77',
|
|
|
|
author_email='thor77@thor77.org',
|
|
|
|
description='A simple Teamspeak stats-generator',
|
2017-04-19 23:35:25 +02:00
|
|
|
long_description=open('README.rst').read(),
|
2016-05-11 21:09:45 +02:00
|
|
|
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 17:59:02 +02:00
|
|
|
package_data={
|
2016-11-18 21:55:33 +01:00
|
|
|
'tsstats': ['templates/*.jinja2']
|
2016-06-07 17:59:02 +02:00
|
|
|
},
|
2016-06-07 15:44:27 +02:00
|
|
|
install_requires=[
|
2017-08-24 19:36:39 +02:00
|
|
|
'Jinja2>=2.8',
|
2017-09-05 22:18:04 +02:00
|
|
|
'pendulum==1.2.5'
|
2016-06-07 15:44:27 +02:00
|
|
|
],
|
2016-05-11 21:09:45 +02:00
|
|
|
)
|