forked from pallets/flask
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
// Flask // | ||
|
||
because a pocket knife is not the only thing that | ||
might come in handy | ||
|
||
|
||
~ What is Flask? | ||
|
||
Flask is a microframework for Python based on Werkzeug | ||
and Jinja2. It's intended for small scale applications | ||
and was development with best intentions in mind. | ||
|
||
~ Is it ready? | ||
|
||
Nope, this is still work in progress, but I am happy to | ||
accept patches and improvements already. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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='[email protected]', | ||
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', | ||
] | ||
) |