source: main/waeup.fceokene/trunk/setup.py @ 17853

Last change on this file since 17853 was 17354, checked in by Henrik Bettermann, 19 months ago

Update setup.py

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