forked from orbit-oss/flask
Fixed a bug in setup.py
This commit is contained in:
parent
1fff3e5981
commit
574e81f9c8
2 changed files with 5 additions and 2 deletions
|
|
@ -24,7 +24,10 @@ A minimal Flask application looks something like that::
|
||||||
app.run()
|
app.run()
|
||||||
|
|
||||||
Just save it as `hello.py` or something similar and run it with your
|
Just save it as `hello.py` or something similar and run it with your
|
||||||
Python interpreter::
|
Python interpreter. Make sure to not call your application `flask.py`
|
||||||
|
because this would conflict with Flask itself.
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
$ python hello.py
|
$ python hello.py
|
||||||
* Running on http://localhost:5000/
|
* Running on http://localhost:5000/
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -9,7 +9,7 @@ setup(
|
||||||
author='Armin Ronacher',
|
author='Armin Ronacher',
|
||||||
author_email='armin.ronacher@active-4.com',
|
author_email='armin.ronacher@active-4.com',
|
||||||
description='A microframework based on Werkzeug, Jinja2 and good intentions',
|
description='A microframework based on Werkzeug, Jinja2 and good intentions',
|
||||||
modules=['flask'],
|
py_modules=['flask'],
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
platforms='any',
|
platforms='any',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue