forked from mitsuhiko/flask-extension-wizard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME
28 lines (21 loc) · 932 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Flask Extension Wizard
======================
A script that can generate Flask Extensions. Just make sure to
have Flask installed before running that script. It will prompt
you for a few things and then generate the basic stuff for you.
If you have Sphinx installed, it can create Sphinx documentation.
(It will automatically set up the Sphinx themes as a Git submodule
if you are using Git.)
If you have Git or Mercurial installed, it can initialize a
repository, and add a link to the development version if you plan
to host it on Github, Gitorious, or Bitbucket.
By default, extensions are listed as BSD licensed, but you can
select the MIT license or use a different license by selecting
"none" when the wizard asks.
Installation with a fresh virtualenv:
$ virtualenv env
$ env/bin/activate
$ easy_install Flask Sphinx
$ wget http://bit.ly/flask-extension-wizard
$ python make_flaskext.py
Then follow the instructions.