Added setup.py and README

This commit is contained in:
Armin Ronacher 2010-04-06 13:23:18 +02:00
parent 33850c0ebd
commit b15ad39427
2 changed files with 36 additions and 0 deletions

19
setup.py Normal file
View file

@ -0,0 +1,19 @@
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',
modules=['flask'],
zip_safe=False,
platforms='any',
install_requires=[ # yes, as of now we need the development versions
'Werkzeug==dev',
'Jinja2==dev',
]
)