From 432e89bfbe50e0e7559f529abe01b7ecea9e3114 Mon Sep 17 00:00:00 2001 From: Thor77 Date: Wed, 11 May 2016 21:09:45 +0200 Subject: [PATCH] add setup.py --- setup.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..9a81d25 --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +from setuptools import setup + +setup( + name='tsstats', + version='0.1.0', + author='Thor77', + author_email='thor77@thor77.org', + description='A simple Teamspeak stats-generator', + keywords='ts3 teamspeak teamspeak3 tsstats teamspeakstats', + url='https://github.com/Thor77/TeamspeakStats', + packages=['tsstats'], + entry_points={ + 'console_scripts': [ + 'tsstats = tsstats.__main__:cli' + ] + }, + install_requires=open('requirements.txt').read() +)