Fixed a doc display bug and setup.py workaround for dev version.

This commit is contained in:
Armin Ronacher 2010-04-11 02:42:13 +02:00
parent 05f36c7f7e
commit 1fff3e5981
3 changed files with 10 additions and 8 deletions

View file

@ -12,8 +12,9 @@ setup(
modules=['flask'],
zip_safe=False,
platforms='any',
install_requires=[ # yes, as of now we need the development versions
'Werkzeug==dev',
'Jinja2==dev',
install_requires=[
## disabled until release, install yourself
# 'Werkzeug',
# 'Jinja2'
]
)