-
Notifications
You must be signed in to change notification settings - Fork 34
/
setup.py
48 lines (45 loc) · 1.3 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
"""
Flask-Common
-------------
A Flask extension with lots of common time-savers (file-serving, favicons, etc).
"""
import os
import sys
from setuptools import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload')
sys.exit()
setup(
name='Flask-Common',
version='0.3.0',
url='https://github.com/kennethreitz/flask-common',
license='BSD',
author='Kenneth Reitz',
author_email='[email protected]',
description='A Flask extension with lots of common time-savers (file-serving, favicons, etc).',
long_description=__doc__,
py_modules=['flask_common'],
# if you would be using a package instead use packages instead
# of py_modules:
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'Gunicorn',
'WhiteNoise',
'crayons',
'maya',
'Flask-Caching',
'meinheld'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)