You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
490 B

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=[
## disabled until release, install yourself
# 'Werkzeug',
# 'Jinja2'
]
)