source: main/waeup.kofa/trunk/setup.py @ 11693

Last change on this file since 11693 was 11693, checked in by Henrik Bettermann, 10 years ago

Back to work.

  • Property svn:keywords set to Id
File size: 3.7 KB
RevLine 
[4945]1import os
[3518]2from setuptools import setup, find_packages
3
[11693]4version = '1.3dev'
[3518]5
[5057]6install_requires =[
7    'setuptools',
[7470]8    #'gp.fileupload',
[5057]9    'grok',
[5495]10    'grokcore.startup',
[5057]11    'grokui.admin',
12    'hurry.query',
[5836]13    'hurry.jquery',
14    'hurry.jqueryui',
[6349]15    'hurry.workflow >= 0.11',
[5057]16    # Add extra requirements here
[5854]17    'docutils', # For RST-processing...
[5057]18    'zope.xmlpickle',
[5632]19    'hurry.file',
[6028]20    #'hurry.yui',
[5057]21    'hurry.zoperesource',
22    'zc.sourcefactory',
23    'megrok.layout',
[6194]24    'reportlab',
[10108]25    'Pillow',
[10027]26    'unicodecsv',
[5057]27    'zope.app.authentication', # BBB: During switch to grok 1.1
[5632]28    'zope.app.file',
[5067]29    'zope.app.testing',        # XXX: test_permissions needs this
[7666]30    'zope.app.undo',
[5632]31    'zope.file',
[6287]32    'zope.interface >= 3.6.0',
[5067]33    'zope.testbrowser',        # XXX: test_permissions needs this
[5328]34    'zope.i18n',
[5632]35    'zope.mimetype',
[6200]36    'zope.errorview',
[6287]37    'zope.schema >= 3.8.0',
[7470]38    'zope.sendmail',
[8492]39    'ulif.loghandlers',
[9217]40    'zc.async[z3]',
[11254]41    'z3c.evalexception',
[5057]42    ],
43
[11254]44diazo_require = [
45    'diazo',
46    'webob',
47    ]
48
[7570]49# Having beaker installed additionally is a feature very recommended
50# for production use. The default buildout includes beaker for tests,
51# start scripts, and other parts that can benefit from it. The windows
52# buildout does not include it due to compiling problems with the
53# beaker package.
54beaker_require = [
55    'dolmen.beaker',
56    ]
57
[5057]58tests_require = [
59    'z3c.testsetup',
60    'zope.app.testing',
61    'zope.testbrowser',
62    'zope.testing',
[5836]63    'unittest2',
[5057]64    ]
65
[5632]66docs_require = [
67    'Sphinx',
68    'collective.recipe.sphinxbuilder',
69    'docutils',
70    'roman',
[5661]71    'repoze.sphinx.autointerface',
[5632]72    ]
73
[4945]74def read(*rnames):
75    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
76
77long_description = (
78    read('README.txt')
79    + '\n\n'
[7808]80    + read('src', 'waeup', 'kofa', 'app.txt')
[4945]81    + '\n\n'
82    + read('CHANGES.txt')
83    + '\n\n'
84    + 'Download\n'
85    + '********\n'
86    )
87
[7808]88setup(name = 'waeup.kofa',
[5057]89      version = version,
90      description = "A student online information and  registration portal",
91      long_description = long_description,
[4945]92
[7808]93      keywords = "portal waeup kofa student university registration grok zope",
[4945]94      # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
[5057]95      classifiers = [
[9999]96        'Development Status :: 4 - Beta',
[4945]97        'Environment :: Web Environment',
98        'Intended Audience :: Education',
99        'License :: OSI Approved :: GNU General Public License (GPL)',
100        'Programming Language :: Python',
101        'Operating System :: POSIX',
102        'Operating System :: POSIX :: Linux',
103        'Framework :: Zope3',
104        'Topic :: Education',
105        'Topic :: Internet :: WWW/HTTP',
106        ],
[5057]107      author = "The WAeUP team.",
108      author_email = "",
109      url = "http://www.waeup.org/",
110      license = "GPL",
111      package_dir = {'': 'src'},
112      packages= find_packages('src'),
[4919]113      namespace_packages = ['waeup',],
[5057]114      include_package_data = True,
115      zip_safe = False,
116      install_requires = install_requires,
117      tests_require = tests_require,
118      extras_require = dict(
119        test = tests_require,
[5632]120        docs = docs_require,
[7570]121        beaker = beaker_require,
[11254]122        diazo = diazo_require,
[4789]123        ),
[3518]124      entry_points="""
125      # Add entry points here
[11254]126      #[hurry.resource.libraries]
127      #waeup_kofa = waeup.kofa.browser.resources:waeup_kofa
[5495]128      [console_scripts]
[7808]129      kofa-debug = grokcore.startup:interactive_debug_prompt
130      kofactl = grokcore.startup:zdaemon_controller
[8418]131      analyze = waeup.kofa.maintenance:db_analyze
[10183]132      fsdiff = waeup.kofa.maintenance:db_diff
[5495]133      [paste.app_factory]
[9217]134      main = waeup.kofa.startup:env_app_factory
135      debug = waeup.kofa.startup:env_debug_app_factory
[5495]136
[3518]137      """,
138      )
Note: See TracBrowser for help on using the repository browser.