Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > ccd2f5c08185f7721754f86a114862fe > files > 391

python-enthought-envisageplugins-3.1.1-2mdv2010.0.noarch.rpm

# Major package imports.
from setuptools import setup, find_packages

setup(
    name                 = 'acme.acmelab',
    version              = '0.1a1',
    author               = 'Enthought, Inc',
    author_email         = 'info@enthought.com',
    license              = 'BSD',
    zip_safe             = False,
    packages             = find_packages(),
    include_package_data = True,

    namespace_packages   = [
        'acme',
        'acme.acmelab'
    ],
)