import os from setuptools import setup, find_packages version = '1.2dev' install_requires =[ 'setuptools', 'grok', 'grokui.admin', 'grokcore.startup', 'waeup.kofa >= 1.1', 'kofacustom.nigeria >= 1.0', ], # Having beaker installed additionally is a feature very recommended # for production use. The default buildout includes beaker for tests, # start scripts, and other parts that can benefit from it. The windows # buildout does not include it due to compiling problems with the # beaker package. beaker_require = [ 'dolmen.beaker', ] diazo_require = [ 'diazo', 'webob', ] tests_require = [ 'z3c.testsetup', 'zope.app.testing', 'zope.testbrowser', 'zope.testing', 'unittest2', ] def read(*rnames): return open(os.path.join(os.path.dirname(__file__), *rnames)).read() long_description = ( read('README.txt') + '\n\n' + read('CHANGES.txt') + '\n\n' + 'Download\n' + '********\n' ) setup(name = 'waeup.aaue', version = version, description = "A customized waeup.kofa", long_description = long_description, keywords = "portal waeup kofa 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, beaker = beaker_require, diazo = diazo_require, ), entry_points=""" [console_scripts] kofa-debug = grokcore.startup:interactive_debug_prompt kofactl = waeup.kofa.startup:zdaemon_controller [paste.app_factory] main = waeup.kofa.startup:env_app_factory debug = waeup.kofa.startup:env_debug_app_factory """, )