maintenance work

* remove generated template python code (fixes #6)
 * add an index controller and make it the default (addresses #5)
 * add a dependency to sqlalchemy-migrate (fixes #4, addresses #2)


git-svn-id: file:///var/www/wwwusers/usr01/svn/pyalchemybiz/trunk@6 389c73d4-bf09-4d3d-a15e-f94a37d0667a
This commit is contained in:
Jan Dittberner 2008-10-05 19:02:55 +00:00
parent 554276ed23
commit ab91d92af3
14 changed files with 52 additions and 213 deletions

View file

@ -1,10 +1,10 @@
Metadata-Version: 1.0
Name: pyalchemybiz
Version: 0.0.0dev
Summary: UNKNOWN
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: UNKNOWN
Version: 0.1dev-r5
Summary: python based small business suite.
Home-page: http://www.dittberner.info/projects/pyalchemybiz
Author: Jan Dittberner
Author-email: jan@dittberner.info
License: UNKNOWN
Description: UNKNOWN
Platform: UNKNOWN

View file

@ -1,7 +1,12 @@
MANIFEST.in
README.txt
development.ini
setup.cfg
setup.py
test.ini
data/templates/base.mako.py
data/templates/customer.mako.py
docs/index.txt
pyalchemybiz/__init__.py
pyalchemybiz/websetup.py
pyalchemybiz.egg-info/PKG-INFO
@ -9,6 +14,7 @@ pyalchemybiz.egg-info/SOURCES.txt
pyalchemybiz.egg-info/dependency_links.txt
pyalchemybiz.egg-info/entry_points.txt
pyalchemybiz.egg-info/paste_deploy_config.ini_tmpl
pyalchemybiz.egg-info/paster_plugins.txt
pyalchemybiz.egg-info/requires.txt
pyalchemybiz.egg-info/top_level.txt
pyalchemybiz/config/__init__.py
@ -16,6 +22,7 @@ pyalchemybiz/config/environment.py
pyalchemybiz/config/middleware.py
pyalchemybiz/config/routing.py
pyalchemybiz/controllers/__init__.py
pyalchemybiz/controllers/customer.py
pyalchemybiz/controllers/error.py
pyalchemybiz/controllers/template.py
pyalchemybiz/lib/__init__.py
@ -23,7 +30,12 @@ pyalchemybiz/lib/app_globals.py
pyalchemybiz/lib/base.py
pyalchemybiz/lib/helpers.py
pyalchemybiz/model/__init__.py
pyalchemybiz/model/customer.py
pyalchemybiz/model/meta.py
pyalchemybiz/public/index.html
pyalchemybiz/templates/base.mako
pyalchemybiz/templates/customer.mako
pyalchemybiz/tests/__init__.py
pyalchemybiz/tests/test_models.py
pyalchemybiz/tests/functional/__init__.py
pyalchemybiz/tests/functional/__init__.py
pyalchemybiz/tests/functional/test_customer.py

View file

@ -1 +1,3 @@
Pylons>=0.9.6.2
Pylons>=0.9.6.2
SQLAlchemy>=0.4.7
sqlalchemy-migrate>=0.4.5