[4945] | 1 | import os |
---|
[3518] | 2 | from setuptools import setup, find_packages |
---|
| 3 | |
---|
[4955] | 4 | version = '0.2dev' |
---|
[3518] | 5 | |
---|
[5057] | 6 | install_requires =[ |
---|
| 7 | 'setuptools', |
---|
| 8 | 'grok', |
---|
[5491] | 9 | 'grokcore.startup', |
---|
[5057] | 10 | 'grokui.admin', |
---|
| 11 | 'hurry.query', |
---|
| 12 | 'hurry.workflow', |
---|
| 13 | # Add extra requirements here |
---|
| 14 | 'zope.xmlpickle', |
---|
| 15 | 'hurry.yui', |
---|
| 16 | 'hurry.zoperesource', |
---|
| 17 | 'zc.sourcefactory', |
---|
| 18 | 'megrok.layout', |
---|
| 19 | 'zope.app.authentication', # BBB: During switch to grok 1.1 |
---|
[5067] | 20 | 'zope.app.testing', # XXX: test_permissions needs this |
---|
| 21 | 'zope.testbrowser', # XXX: test_permissions needs this |
---|
[5328] | 22 | 'zope.i18n', |
---|
[5057] | 23 | ], |
---|
| 24 | |
---|
| 25 | tests_require = [ |
---|
| 26 | 'z3c.testsetup', |
---|
| 27 | 'zope.app.testing', |
---|
| 28 | 'zope.testbrowser', |
---|
| 29 | 'zope.testing', |
---|
| 30 | ] |
---|
| 31 | |
---|
[4945] | 32 | def read(*rnames): |
---|
| 33 | return open(os.path.join(os.path.dirname(__file__), *rnames)).read() |
---|
| 34 | |
---|
| 35 | long_description = ( |
---|
| 36 | read('README.txt') |
---|
| 37 | + '\n\n' |
---|
| 38 | + read('src', 'waeup', 'sirp', 'README.txt') |
---|
| 39 | + '\n\n' |
---|
| 40 | + read('CHANGES.txt') |
---|
| 41 | + '\n\n' |
---|
| 42 | + 'Download\n' |
---|
| 43 | + '********\n' |
---|
| 44 | ) |
---|
| 45 | |
---|
[5057] | 46 | setup(name = 'waeup.sirp', |
---|
| 47 | version = version, |
---|
| 48 | description = "A student online information and registration portal", |
---|
| 49 | long_description = long_description, |
---|
[4945] | 50 | |
---|
[5057] | 51 | keywords = "portal waeup sirp student university registration grok zope", |
---|
[4945] | 52 | # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
---|
[5057] | 53 | classifiers = [ |
---|
[4945] | 54 | 'Development Status :: 3 - Alpha', |
---|
| 55 | 'Environment :: Web Environment', |
---|
| 56 | 'Intended Audience :: Education', |
---|
| 57 | 'License :: OSI Approved :: GNU General Public License (GPL)', |
---|
| 58 | 'Programming Language :: Python', |
---|
| 59 | 'Operating System :: POSIX', |
---|
| 60 | 'Operating System :: POSIX :: Linux', |
---|
| 61 | 'Framework :: Zope3', |
---|
| 62 | 'Topic :: Education', |
---|
| 63 | 'Topic :: Internet :: WWW/HTTP', |
---|
| 64 | ], |
---|
[5057] | 65 | author = "The WAeUP team.", |
---|
| 66 | author_email = "", |
---|
| 67 | url = "http://www.waeup.org/", |
---|
| 68 | license = "GPL", |
---|
| 69 | package_dir = {'': 'src'}, |
---|
| 70 | packages= find_packages('src'), |
---|
[4919] | 71 | namespace_packages = ['waeup',], |
---|
[5057] | 72 | include_package_data = True, |
---|
| 73 | zip_safe = False, |
---|
| 74 | install_requires = install_requires, |
---|
| 75 | tests_require = tests_require, |
---|
| 76 | extras_require = dict( |
---|
| 77 | test = tests_require, |
---|
| 78 | docs = ['Sphinx', |
---|
| 79 | 'z3c.recipe.sphinxdoc', |
---|
| 80 | ], |
---|
[4789] | 81 | ), |
---|
[3518] | 82 | entry_points=""" |
---|
| 83 | # Add entry points here |
---|
[5491] | 84 | [console_scripts] |
---|
| 85 | sirp-debug = grokcore.startup:interactive_debug_prompt |
---|
| 86 | sirpctl = grokcore.startup:zdaemon_controller |
---|
| 87 | [paste.app_factory] |
---|
| 88 | main = grokcore.startup:application_factory |
---|
| 89 | debug = grokcore.startup:debug_application_factory |
---|
| 90 | |
---|
[3518] | 91 | """, |
---|
| 92 | ) |
---|