[10120] | 1 | import os |
---|
| 2 | from setuptools import setup, find_packages |
---|
| 3 | |
---|
[11513] | 4 | version = '1.2dev' |
---|
[10120] | 5 | |
---|
| 6 | install_requires =[ |
---|
| 7 | 'setuptools', |
---|
| 8 | 'grok', |
---|
| 9 | 'grokui.admin', |
---|
| 10 | 'grokcore.startup', |
---|
[11513] | 11 | 'waeup.kofa >= 1.1', |
---|
[11284] | 12 | 'kofacustom.nigeria >= 1.0', |
---|
[10120] | 13 | ], |
---|
| 14 | |
---|
| 15 | # Having beaker installed additionally is a feature very recommended |
---|
| 16 | # for production use. The default buildout includes beaker for tests, |
---|
| 17 | # start scripts, and other parts that can benefit from it. The windows |
---|
| 18 | # buildout does not include it due to compiling problems with the |
---|
| 19 | # beaker package. |
---|
| 20 | beaker_require = [ |
---|
| 21 | 'dolmen.beaker', |
---|
| 22 | ] |
---|
| 23 | |
---|
[11284] | 24 | diazo_require = [ |
---|
| 25 | 'diazo', |
---|
| 26 | 'webob', |
---|
| 27 | ] |
---|
| 28 | |
---|
[10120] | 29 | tests_require = [ |
---|
| 30 | 'z3c.testsetup', |
---|
| 31 | 'zope.app.testing', |
---|
| 32 | 'zope.testbrowser', |
---|
| 33 | 'zope.testing', |
---|
| 34 | 'unittest2', |
---|
| 35 | ] |
---|
| 36 | |
---|
| 37 | def read(*rnames): |
---|
| 38 | return open(os.path.join(os.path.dirname(__file__), *rnames)).read() |
---|
| 39 | |
---|
| 40 | long_description = ( |
---|
| 41 | read('README.txt') |
---|
| 42 | + '\n\n' |
---|
| 43 | + read('CHANGES.txt') |
---|
| 44 | + '\n\n' |
---|
| 45 | + 'Download\n' |
---|
| 46 | + '********\n' |
---|
| 47 | ) |
---|
| 48 | |
---|
| 49 | setup(name = 'waeup.aaua', |
---|
| 50 | version = version, |
---|
| 51 | description = "A customized waeup.kofa", |
---|
| 52 | long_description = long_description, |
---|
| 53 | |
---|
| 54 | keywords = "portal waeup kofa student university registration grok zope", |
---|
| 55 | # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
---|
| 56 | classifiers = [ |
---|
| 57 | 'Development Status :: 3 - Alpha', |
---|
| 58 | 'Environment :: Web Environment', |
---|
| 59 | 'Intended Audience :: Education', |
---|
| 60 | 'License :: OSI Approved :: GNU General Public License (GPL)', |
---|
| 61 | 'Programming Language :: Python', |
---|
| 62 | 'Operating System :: POSIX', |
---|
| 63 | 'Operating System :: POSIX :: Linux', |
---|
| 64 | 'Framework :: Zope3', |
---|
| 65 | 'Topic :: Education', |
---|
| 66 | 'Topic :: Internet :: WWW/HTTP', |
---|
| 67 | ], |
---|
| 68 | author = "The WAeUP team.", |
---|
| 69 | author_email = "", |
---|
| 70 | url = "http://www.waeup.org/", |
---|
| 71 | license = "GPL", |
---|
| 72 | package_dir = {'': 'src'}, |
---|
| 73 | packages= find_packages('src'), |
---|
| 74 | namespace_packages = ['waeup',], |
---|
| 75 | include_package_data = True, |
---|
| 76 | zip_safe = False, |
---|
| 77 | install_requires = install_requires, |
---|
| 78 | tests_require = tests_require, |
---|
| 79 | extras_require = dict( |
---|
| 80 | test = tests_require, |
---|
| 81 | beaker = beaker_require, |
---|
[11284] | 82 | diazo = diazo_require, |
---|
[10120] | 83 | ), |
---|
| 84 | entry_points=""" |
---|
| 85 | [console_scripts] |
---|
| 86 | kofa-debug = grokcore.startup:interactive_debug_prompt |
---|
| 87 | kofactl = grokcore.startup:zdaemon_controller |
---|
| 88 | [paste.app_factory] |
---|
| 89 | main = waeup.kofa.startup:env_app_factory |
---|
| 90 | debug = waeup.kofa.startup:env_debug_app_factory |
---|
| 91 | """, |
---|
| 92 | ) |
---|