-
Notifications
You must be signed in to change notification settings - Fork 12
/
INSTALL
34 lines (22 loc) · 921 Bytes
/
INSTALL
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
29
30
31
32
33
34
If you want to install the current live version of WsgiService just type the
following command on the command line (you probably want to execute this
inside a virtualenv):
easy_install WsgiService
DEVELOPMENT
===========
To install a development version, first check out WsgiService from somewhere.
The current master fork is the git repository maintained by Patrice Neff at
<git://github.com/pneff/wsgiservice.git>.
After checking out, type the following command:
python setup.py develop
You need setuptools for this to work.
If the installation directory is a system-owned directory (for instance,
/usr/lib/python2.7/site-packages), then you need to run the above command
as root.
DOCUMENTATION
=============
To build the documentation first install Sphinx <http://sphinx.pocoo.org/>.
Then execute:
cd docs
make html
The documentation is generated in the directory `_build/html/index.html`.