added setup.cfg

This commit is contained in:
percious 2010-03-13 13:16:35 -05:00
parent d3d72320cb
commit ff7ca86773
3 changed files with 8 additions and 6 deletions

View File

@ -2,13 +2,13 @@
This is the main dispatcher module.
Dispatch works as follows:
Start at the RootController, the root controller must
Start at the Originating dispatcher, which must
have a _dispatch function, which defines how we move
from object to object in the system.
from dispatch object to dispatch object in the system.
Continue following the dispatch mechanism for a given
controller until you reach another controller with a
_dispatch method defined. Use the new _dispatch
method until anther controller with _dispatch defined
method until another controller with _dispatch defined
or until the url has been traversed to entirety.
This module also contains the standard ObjectDispatch

View File

@ -1,3 +1,5 @@
[aliases]
release = egg_info -Db "" sdist register upload
[egg_info]
tag_build = dev
tag_svn_revision = true
tag_build =

View File

@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import sys, os
version = '0.1a1'
version = '0.1a0'
setup(name='crank',
version=version,