source: waeup/branches/ulif-namespace/setup.py @ 4795

Last change on this file since 4795 was 4794, checked in by uli, 15 years ago

Tell setuptools about new namespace.

File size: 1.2 KB
RevLine 
[3518]1from setuptools import setup, find_packages
2
[3520]3version = '0.1dev'
[3518]4
[4794]5setup(name='waeup.sirp',
[3518]6      version=version,
[3520]7      description="A university registration portal",
[3518]8      long_description="""\
9""",
10      # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
11      classifiers=[],
12      keywords="",
[3520]13      author="The WAeUP team.",
[3518]14      author_email="",
[3520]15      url="http://www.waeup.org/",
16      license="GPL",
[3518]17      package_dir={'': 'src'},
18      packages=find_packages('src'),
[4794]19      namespace_packages=['waeup'],
[3518]20      include_package_data=True,
21      zip_safe=False,
22      install_requires=['setuptools',
23                        'grok',
[4789]24                        'grokui.admin',
[3518]25                        'hurry.query',
26                        'hurry.workflow',
27                        # Add extra requirements here
[4789]28                        'zope.xmlpickle',
29                        'hurry.yui',
30                        'hurry.zoperesource',
31                        'zc.sourcefactory',
32                        'megrok.layout',
[3518]33                        ],
[4789]34      extras_require=dict(
35        docs=['Sphinx',
36              'z3c.recipe.sphinxdoc',
37             ],
38        ),
[3518]39      entry_points="""
40      # Add entry points here
41      """,
42      )
Note: See TracBrowser for help on using the repository browser.