[Zope-CVS] CVS: Products/Basket/tests/fixtures-src/notzipsafe -
	setup.py:1.1
    Chris McDonough 
    chrism at plope.com
       
    Thu Nov 10 13:21:30 EST 2005
    
    
  
Update of /cvs-repository/Products/Basket/tests/fixtures-src/notzipsafe
In directory cvs.zope.org:/tmp/cvs-serv15635/tests/fixtures-src/notzipsafe
Added Files:
	setup.py 
Log Message:
Break oiut Basket class and support functions into a basket.py module.
If an egg is marked explicitly as "not-zip-safe", unzip it to a tempdir and add the tempdir to sys.path.
=== Added File Products/Basket/tests/fixtures-src/notzipsafe/setup.py ===
from setuptools import setup, find_packages
setup(
    name = 'notzipsafe',
    version = '0.1',
    packages = find_packages(),
    entry_points = {'zope2.initialize':
                    ['initialize=notzipsafe:initialize']},
    url = 'http://www.example.com/notzipsafe',
    package_data = {'':['*.jpg']},
    author = 'Joe Bloggs',
    author_email = 'bloggs at example.com',
    zip_safe = False,
    )
    
    
More information about the Zope-CVS
mailing list