2010-04-06 19:23:18 +08:00
|
|
|
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',
|
2010-04-11 08:46:44 +08:00
|
|
|
py_modules=['flask'],
|
2010-04-06 19:23:18 +08:00
|
|
|
zip_safe=False,
|
|
|
|
platforms='any',
|
2010-04-11 08:42:13 +08:00
|
|
|
install_requires=[
|
2010-04-13 07:08:52 +08:00
|
|
|
'Werkzeug>=0.6.1',
|
|
|
|
'Jinja2>=2.4'
|
2010-04-06 19:23:18 +08:00
|
|
|
]
|
|
|
|
)
|