benchmark-scoreboard/setup.py

40 lines
1.3 KiB
Python
Raw Normal View History

2017-04-12 18:56:20 +00:00
"""
Author: Denis Nutiu <denis.nutiu@gmail.com>
This file is part of scoreboard-benchmark.
scoreboard-benchmark is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
scoreboard-benchmark is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with scoreboard-benchmark . If not, see <http://www.gnu.org/licenses/>.
"""
2017-04-12 19:09:19 +00:00
from setuptools import setup, find_packages
long_description = open("README.md").read()
2017-04-12 19:09:19 +00:00
setup(
name="scoreboard-benchmark",
2017-04-18 22:31:25 +00:00
version="2.0",
2017-04-12 19:09:19 +00:00
packages=find_packages(),
long_description=long_description,
2017-04-12 19:09:19 +00:00
install_requires=[
2017-04-12 19:51:35 +00:00
'flask',
'flask-bootstrap',
2017-04-16 23:18:18 +00:00
'flask-sqlalchemy',
2017-04-21 13:59:33 +00:00
'pymysql',
"gunicorn"
2017-04-12 19:09:19 +00:00
],
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",
)