Changeset 32

Show
Ignore:
Timestamp:
01/01/07 14:28:34 (5 years ago)
Author:
tim
Message:

Included feedparser as a dependency.
Updated copyright year.

Location:
trunk
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • trunk/cogplanet.egg-info/dependency_links.txt

    r1 r32  
    1  
     1http://sourceforge.net/project/showfiles.php?group_id=112328&package_id=121603&release_id=384485 
  • trunk/cogplanet.egg-info/PKG-INFO

    r22 r32  
    77Author-email: tim@achievewith.us 
    88License: MIT 
    9 Description: UNKNOWN 
     9Description: The CogPlanet planet server aggregates multiple 
     10        syndicated sites into one html page.  Someday 
     11        it will embed easily into existing TurboGears 
     12        applications. 
    1013Keywords: turbogears.app 
    1114Platform: UNKNOWN 
  • trunk/cogplanet.egg-info/requires.txt

    r22 r32  
    11BeautifulSoup 
    2 TurboGears >= 1.0b2 
     2feedparser 
     3Genshi 
     4TurboGears == 1.0b2 
    35SQLAlchemy 
  • trunk/cogplanet.egg-info/SOURCES.txt

    r30 r32  
     1LICENSE.txt 
    12README.txt 
    23dev.cfg 
  • trunk/LICENSE.txt

    r30 r32  
    22http://www.opensource.org/licenses/mit-license.php 
    33 
    4 Copyright (c) 2006 Tim Freund and contributors. 
     4Copyright (c) 2007 Tim Freund and contributors. 
    55 
    66Permission is hereby granted, free of charge, to any person obtaining 
  • trunk/setup.py

    r31 r32  
    66 
    77setup( 
    8     name="CogPlanet", 
     8    name="cogplanet", 
    99    version=version, 
    1010     
     
    1818    license=license, 
    1919     
     20    dependency_links = [ 
     21        "http://sourceforge.net/project/showfiles.php?group_id=112328&package_id=121603&release_id=384485", 
     22        ], 
     23 
    2024    install_requires = [ 
    2125        "BeautifulSoup", 
    22         "genshi", 
    23         "TurboGears >= 1.0b2", 
     26        "feedparser", 
     27        "Genshi", 
     28        "TurboGears == 1.0b2", 
    2429        "SQLAlchemy",  
    2530    ],