add tsstats/template.html to setup.py:package_data

* fix TemplateNotFound on pip-installations
* bump version to 0.6.1
This commit is contained in:
Thor77 2016-06-07 17:59:02 +02:00
parent fe29b6f050
commit 41fee91e63
2 changed files with 5 additions and 2 deletions

View File

@ -56,7 +56,7 @@ author = 'Thor77'
# The short X.Y version. # The short X.Y version.
version = '0.6' version = '0.6'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.6.0' release = '0.6.1'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name='tsstats', name='tsstats',
version='0.6.0', version='0.6.1',
author='Thor77', author='Thor77',
author_email='thor77@thor77.org', author_email='thor77@thor77.org',
description='A simple Teamspeak stats-generator', description='A simple Teamspeak stats-generator',
@ -14,6 +14,9 @@ setup(
'tsstats = tsstats.__main__:cli' 'tsstats = tsstats.__main__:cli'
] ]
}, },
package_data={
'tsstats': ['template.html']
},
install_requires=[ install_requires=[
'Jinja2>=2.8' 'Jinja2>=2.8'
], ],