luke / Haus (http://houseofhaus.org/)

A loosely joined WSGI-centric Web programming framework. It is easy to add components to the framework or override components with your own versions on a per application basis. You can control how components are loaded and applied to your application by adding simple configuration options. The framework is connected to your application code and templates with an easy-to-use decorator.

Clone this repository (size: 106.8 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/luke/haus/
commit 17: 304c54763972
parent 16: c38450dc722f
branch: default
Removed ez_setup from init project template.
Luke Arno
20 months ago

Changed (Δ63 bytes):

raw changeset »

docs/quickstart.rst (1 lines added, 2 lines removed)

haus/init/ez_setup.py.tpl

haus/init/setup.py.tpl (1 lines added, 3 lines removed)

Up to file-list docs/quickstart.rst:

@@ -18,7 +18,6 @@ Now initialize your procject:
18
18
    $ tree
19
19
    .
20
20
    |-- MANIFEST.in
21
    |-- ez_setup.py
22
21
    |-- myproj
23
22
    |   |-- __init__.py
24
23
    |   |-- app.conf
@@ -32,7 +31,7 @@ Now initialize your procject:
32
31
    |   `-- urls.map
33
32
    `-- setup.py
34
33
35
    4 directories, 10 files
34
    4 directories, 9 files
36
35
37
36
You will see an example handler in :file:`demo.py`. Add your own. 
38
37
You don't have to keep the old one and you can rename the file if

Up to file-list haus/init/setup.py.tpl:

1
2
import ez_setup
3
ez_setup.use_setuptools()
4
1
5
2
from setuptools import setup, find_packages
6
3
4
7
5
setup(
8
6
    name='$package_name',
9
7
    version='0.0.0',