import os from setuptools import setup, find_packages version = '0.2dev' install_requires =[ 'setuptools', 'gp.fileupload', 'grok', 'grokcore.startup', 'grokui.admin', 'hurry.query', 'hurry.jquery', 'hurry.jqueryui', 'hurry.workflow >= 0.11', # Add extra requirements here 'docutils', # For RST-processing... 'zope.xmlpickle', 'hurry.file', #'hurry.yui', 'hurry.zoperesource', 'zc.sourcefactory', 'megrok.layout', 'reportlab', 'PIL', 'zope.app.authentication', # BBB: During switch to grok 1.1 'zope.app.file', 'zope.app.testing', # XXX: test_permissions needs this 'zope.file', 'zope.interface >= 3.6.0', 'zope.testbrowser', # XXX: test_permissions needs this 'zope.i18n', 'zope.mimetype', 'zope.errorview', 'zope.schema >= 3.8.0', ], tests_require = [ 'z3c.testsetup', 'zope.app.testing', 'zope.testbrowser', 'zope.testing', 'unittest2', ] docs_require = [ 'Sphinx', 'collective.recipe.sphinxbuilder', 'docutils', 'roman', 'repoze.sphinx.autointerface', ] def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() long_description = ( read('README.txt') + '\n\n' + read('src', 'waeup', 'sirp', 'app.txt') + '\n\n' + read('CHANGES.txt') + '\n\n' + 'Download\n' + '********\n' ) setup(name = 'waeup.sirp', version = version, description = "A student online information and registration portal", long_description = long_description, keywords = "portal waeup sirp student university registration grok zope", # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers = [ 'Development Status :: 3 - Alpha', 'Environment :: Web Environment', 'Intended Audience :: Education', 'License :: OSI Approved :: GNU General Public License (GPL)', 'Programming Language :: Python', 'Operating System :: POSIX', 'Operating System :: POSIX :: Linux', 'Framework :: Zope3', 'Topic :: Education', 'Topic :: Internet :: WWW/HTTP', ], author = "The WAeUP team.", author_email = "", url = "http://www.waeup.org/", license = "GPL", package_dir = {'': 'src'}, packages= find_packages('src'), namespace_packages = ['waeup',], include_package_data = True, zip_safe = False, install_requires = install_requires, tests_require = tests_require, extras_require = dict( test = tests_require, docs = docs_require, ), entry_points=""" # Add entry points here [hurry.resource.libraries] waeup_sirp = waeup.sirp.browser.resources:waeup_sirp [console_scripts] sirp-debug = grokcore.startup:interactive_debug_prompt sirpctl = grokcore.startup:zdaemon_controller [paste.app_factory] main = grokcore.startup:application_factory debug = grokcore.startup:debug_application_factory """, )