Changeset 31

Show
Ignore:
Timestamp:
12/30/06 03:11:16 (5 years ago)
Author:
tim
Message:

Minor administrivia

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/cogplanet/release.py

    r22 r31  
    55description = "A planet server written with TurboGears" 
    66long_description = """The CogPlanet planet server aggregates multiple 
    7 syndicated sites into one html page""" 
     7syndicated sites into one html page.  Someday  
     8it will embed easily into existing TurboGears 
     9applications.""" 
    810author = "Tim Freund" 
    911email = "tim@achievewith.us" 
  • trunk/dev.cfg

    r29 r31  
    1616# sqlalchemy.dburi="mysql://username:password@hostname:port/databasename" 
    1717# sqlalchemy.dburi="sqlite://%(current_dir_uri)s/devdata.sqlite" 
    18 sqlalchemy.dburi="postgres://tim@localhost/cogplanet-test" 
    1918 
    2019# If you have sqlite, here's a simple default to get you started 
  • trunk/setup.py

    r22 r31  
    66 
    77setup( 
    8     name="cogplanet", 
     8    name="CogPlanet", 
    99    version=version, 
    1010     
    1111    # uncomment the following lines if you fill them out in release.py 
    1212    description=description, 
     13    long_description=long_description, 
    1314    author=author, 
    1415    author_email=email, 
     
    1920    install_requires = [ 
    2021        "BeautifulSoup", 
     22        "genshi", 
    2123        "TurboGears >= 1.0b2", 
    2224        "SQLAlchemy",