Sophie

Sophie

distrib > Mandriva > current > x86_64 > by-pkgid > a2cf9b7ce24f3e64e4a116303d43643e > files > 467

python-enthought-envisageplugins-3.2.0-1mdv2010.2.noarch.rpm

# Major package imports.
from setuptools import setup, find_packages

setup(
    name                 = 'acme.workbench',
    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.workbench'
    ],

    entry_points         = """
    [enthought.envisage.plugins]
    acme_workbench = acme.workbench.acme_workbench_plugin:AcmeWorkbenchPlugin
    """
    
)