Changeset 31
Legend:
- Unmodified
- Added
- Removed
-
trunk/cogplanet/release.py
r22 r31 5 5 description = "A planet server written with TurboGears" 6 6 long_description = """The CogPlanet planet server aggregates multiple 7 syndicated sites into one html page""" 7 syndicated sites into one html page. Someday 8 it will embed easily into existing TurboGears 9 applications.""" 8 10 author = "Tim Freund" 9 11 email = "tim@achievewith.us" -
trunk/dev.cfg
r29 r31 16 16 # sqlalchemy.dburi="mysql://username:password@hostname:port/databasename" 17 17 # sqlalchemy.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite" 18 sqlalchemy.dburi="postgres://tim@localhost/cogplanet-test"19 18 20 19 # If you have sqlite, here's a simple default to get you started -
trunk/setup.py
r22 r31 6 6 7 7 setup( 8 name=" cogplanet",8 name="CogPlanet", 9 9 version=version, 10 10 11 11 # uncomment the following lines if you fill them out in release.py 12 12 description=description, 13 long_description=long_description, 13 14 author=author, 14 15 author_email=email, … … 19 20 install_requires = [ 20 21 "BeautifulSoup", 22 "genshi", 21 23 "TurboGears >= 1.0b2", 22 24 "SQLAlchemy",
