mirror of https://github.com/pallets/flask.git
20 lines
446 B
Python
20 lines
446 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='Flask',
|
|
version='0.1',
|
|
url='http://github.com/mitsuhiko/flask/',
|
|
license='BSD',
|
|
author='Armin Ronacher',
|
|
author_email='armin.ronacher@active-4.com',
|
|
description='A microframework based on Werkzeug, Jinja2 and good intentions',
|
|
py_modules=['flask'],
|
|
zip_safe=False,
|
|
platforms='any',
|
|
install_requires=[
|
|
'Werkzeug>=0.6.1',
|
|
'Jinja2>=2.4'
|
|
]
|
|
)
|