CVS: Products/Basket/tests/fixtures-src/notzipsafe - setup.py:1.1

Chris McDonough <[email protected]> Thu, 10 Nov 2005 13:21:30 -0500 (EST)
Newsgroups gmane.comp.web.zope.public-cvs
Message-ID <[email protected]>
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 = '[email protected]',
    zip_safe = False,
    )

_______________________________________________
Zope-CVS maillist  -  [email protected]
http://mail.zope.org/mailman/listinfo/zope-cvs

Zope CVS instructions: http://dev.zope.org/CVS