diff --git a/docs/source/conf.py b/docs/source/conf.py index e4b771a..13658c0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -56,7 +56,7 @@ author = 'Thor77' # The short X.Y version. version = '0.5' # The full version, including alpha/beta/rc tags. -release = '0.5.6' +release = '0.5.7' # 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 e29e6da..de2a59c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='tsstats', - version='0.5.6', + version='0.5.7', author='Thor77', author_email='thor77@thor77.org', description='A simple Teamspeak stats-generator', @@ -14,5 +14,7 @@ setup( 'tsstats = tsstats.__main__:cli' ] }, - install_requires=open('requirements.txt').read() + install_requires=[ + 'Jinja2>=2.8' + ], )