Added the new flask run module to start the server.

This commit is contained in:
Armin Ronacher 2014-04-21 16:34:17 +02:00
parent 42c28c3758
commit 7503bde223
2 changed files with 224 additions and 0 deletions

View file

@ -106,6 +106,10 @@ setup(
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
],
entry_points='''
[console_scripts]
flask-run=flask.run:main
''',
cmdclass={'audit': run_audit},
test_suite='flask.testsuite.suite'
)