-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (28 loc) · 855 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
VERSION = '0.0.3'
LONG_DESCRIPTION = open('README.rst').read()
setup(name='flask-command',
version=VERSION,
description="flask-command - Run you flask+gunicorn app as a command",
long_description=LONG_DESCRIPTION,
keywords='',
author='Reuven V. Gonzales',
author_email='[email protected]',
url="https://github.com/ravenac95/flask-command",
license='MIT',
platforms='*nix',
py_modules=['flaskcommand'],
include_package_data=True,
zip_safe=False,
install_requires=[
'gunicorn',
'flask',
],
entry_points={},
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
)