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