From 8e20419d1fe76df2457fb022cfcc002ba56f4a09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Nut=CC=A6iu?= Date: Wed, 12 Apr 2017 22:09:19 +0300 Subject: [PATCH] Adding simple setup.py --- setup.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/setup.py b/setup.py index dde515e..2558768 100644 --- a/setup.py +++ b/setup.py @@ -15,3 +15,19 @@ You should have received a copy of the GNU General Public License along with scoreboard-benchmark . If not, see . """ +from setuptools import setup, find_packages + +setup( + name="scoreboard-benchmark", + version="0.1", + packages=find_packages(), + install_requires=[ + 'flask>=0.12.1' + ], + author="Denis Nutiu", + author_email="denis.nutiu@gmail.com", + description="This is a simple web applications that displays scores", + license="GPLv3", + keywords="flask benchmark scores ", + url="N/a", +) \ No newline at end of file