fix missing requirements.txt for installation via pip

* copy deps to setup.py instead of reading requirements.txt
This commit is contained in:
Thor77 2016-06-07 15:44:27 +02:00
parent 8ca23e0115
commit 5c44f0ca47
2 changed files with 5 additions and 3 deletions

View File

@ -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.

View File

@ -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'
],
)