Last change
on this file since 4506 was
4270,
checked in by uli, 15 years ago
|
Add sphinxdoc support for building documentation automatically.
|
File size:
1.2 KB
|
Rev | Line | |
---|
[3518] | 1 | from setuptools import setup, find_packages |
---|
| 2 | |
---|
[3520] | 3 | version = '0.1dev' |
---|
[3518] | 4 | |
---|
| 5 | setup(name='waeup', |
---|
| 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'), |
---|
| 19 | include_package_data=True, |
---|
| 20 | zip_safe=False, |
---|
| 21 | install_requires=['setuptools', |
---|
| 22 | 'grok', |
---|
[3835] | 23 | 'grokui.admin', |
---|
[3518] | 24 | 'hurry.query', |
---|
| 25 | 'hurry.workflow', |
---|
| 26 | # Add extra requirements here |
---|
[4044] | 27 | 'zope.xmlpickle', |
---|
[4102] | 28 | 'hurry.yui', |
---|
| 29 | 'hurry.zoperesource', |
---|
[4123] | 30 | 'zc.sourcefactory', |
---|
[3518] | 31 | ], |
---|
[4270] | 32 | extras_require=dict( |
---|
| 33 | docs=['Sphinx', |
---|
| 34 | 'z3c.recipe.sphinxdoc', |
---|
| 35 | ], |
---|
| 36 | ), |
---|
[3518] | 37 | entry_points=""" |
---|
| 38 | # Add entry points here |
---|
| 39 | """, |
---|
| 40 | ) |
---|
Note: See
TracBrowser for help on using the repository browser.