Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > c66175b08690d24bca431460aac64d89 > files > 48

python-envisage-doc-4.3.0-3.fc18.noarch.rpm

# Major package imports.
from setuptools import setup, find_packages

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

    namespace_packages   = [
        'acme',
        'acme.motd'
    ],

    install_requires     = [
        'EnvisageCore>=3.0.0a1',
    ],

    entry_points = """

    [envisage.plugins]
    acme.motd = acme.motd.motd_plugin:MOTDPlugin

    """
)