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:
parent
fe29b6f050
commit
41fee91e63
|
@ -56,7 +56,7 @@ author = 'Thor77'
|
|||
# The short X.Y version.
|
||||
version = '0.6'
|
||||
# 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
|
||||
# for a list of supported languages.
|
||||
|
|
5
setup.py
5
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='tsstats',
|
||||
version='0.6.0',
|
||||
version='0.6.1',
|
||||
author='Thor77',
|
||||
author_email='thor77@thor77.org',
|
||||
description='A simple Teamspeak stats-generator',
|
||||
|
@ -14,6 +14,9 @@ setup(
|
|||
'tsstats = tsstats.__main__:cli'
|
||||
]
|
||||
},
|
||||
package_data={
|
||||
'tsstats': ['template.html']
|
||||
},
|
||||
install_requires=[
|
||||
'Jinja2>=2.8'
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue