From 41fee91e631ec0819591e788ef126fcd14a17129 Mon Sep 17 00:00:00 2001 From: Thor77 Date: Tue, 7 Jun 2016 17:59:02 +0200 Subject: [PATCH] add tsstats/template.html to setup.py:package_data * fix TemplateNotFound on pip-installations * bump version to 0.6.1 --- docs/source/conf.py | 2 +- setup.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 0af3083..dc0f6f7 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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. diff --git a/setup.py b/setup.py index 9ba0229..7148153 100644 --- a/setup.py +++ b/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' ],