Changeset 109 for sandbox/PylonsGenshi

Show
Ignore:
Timestamp:
08-01-2008 00:13:07 (12 months ago)
Author:
s0undt3ch
Message:

Don't depend on ez_setup, we don't provide it.

Location:
sandbox/PylonsGenshi/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • sandbox/PylonsGenshi/trunk/PylonsGenshi.egg-info/PKG-INFO

    r98 r109  
    22Name: PylonsGenshi 
    33Version: 0.1.0 
    4 Summary: Pylons Project Template Using Genshi As The Templating Language 
     4Summary: Pylons based Paster Project Template Using Genshi As The Templating Language 
    55Home-page: http://pastie.ufsoft.org/wiki/PylonsGenshi 
    66Author: Pedro Algarvio 
  • sandbox/PylonsGenshi/trunk/setup.py

    r98 r109  
    1515# ============================================================================= 
    1616 
     17from setuptools import setup, find_packages 
    1718 
    18 try: 
    19     from setuptools import setup, find_packages 
    20 except ImportError: 
    21     from ez_setup import use_setuptools 
    22     use_setuptools() 
    23     from setuptools import setup, find_packages 
    24  
    25 VERSION = '0.1.0' 
     19VERSION = '0.2.0' 
    2620 
    2721setup( 
     
    3630    author_email = 'ufs@ufsoft.org', 
    3731    url = 'http://pastie.ufsoft.org/wiki/PylonsGenshi', 
    38     packages = find_packages(exclude=['ez_setup']), 
     32    packages = find_packages(), 
    3933    zip_safe = False, 
    4034    include_package_data = True,