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

Last change on this file since 16512 was 16470, checked in by Henrik Bettermann, 3 years ago

Back to work.

  • Property svn:keywords set to Id
File size: 3.9 KB
RevLine 
[4945]1import os
[3518]2from setuptools import setup, find_packages
3
[16470]4version = '1.7.2.dev0'
[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',
[5057]20    'hurry.zoperesource',
21    'zc.sourcefactory',
22    'megrok.layout',
[6194]23    'reportlab',
[10108]24    'Pillow',
[11798]25    'psutil',
[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',
[16157]42    'PyPDF2',
[5057]43    ],
44
[11254]45diazo_require = [
46    'diazo',
47    'webob',
48    ]
49
[7570]50# Having beaker installed additionally is a feature very recommended
51# for production use. The default buildout includes beaker for tests,
52# start scripts, and other parts that can benefit from it. The windows
53# buildout does not include it due to compiling problems with the
54# beaker package.
55beaker_require = [
56    'dolmen.beaker',
57    ]
58
[5057]59tests_require = [
60    'z3c.testsetup',
61    'zope.app.testing',
62    'zope.testbrowser',
63    'zope.testing',
[5836]64    'unittest2',
[5057]65    ]
66
[5632]67docs_require = [
68    'Sphinx',
69    'collective.recipe.sphinxbuilder',
70    'docutils',
71    'roman',
[5661]72    'repoze.sphinx.autointerface',
[5632]73    ]
74
[4945]75def read(*rnames):
76    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
77
78long_description = (
79    read('README.txt')
80    + '\n\n'
81    + read('CHANGES.txt')
82    + '\n\n'
83    + 'Download\n'
84    + '********\n'
85    )
86
[7808]87setup(name = 'waeup.kofa',
[5057]88      version = version,
89      description = "A student online information and  registration portal",
90      long_description = long_description,
[4945]91
[7808]92      keywords = "portal waeup kofa student university registration grok zope",
[4945]93      # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
[5057]94      classifiers = [
[9999]95        'Development Status :: 4 - Beta',
[4945]96        'Environment :: Web Environment',
97        'Intended Audience :: Education',
98        'License :: OSI Approved :: GNU General Public License (GPL)',
99        'Programming Language :: Python',
100        'Operating System :: POSIX',
101        'Operating System :: POSIX :: Linux',
[13284]102        'Programming Language :: Python :: 2',
103        'Programming Language :: Python :: 2.7',
104        'Programming Language :: Python :: 2 :: Only',
105        'Programming Language :: Python :: Implementation :: CPython',
[4945]106        'Framework :: Zope3',
107        'Topic :: Education',
108        'Topic :: Internet :: WWW/HTTP',
109        ],
[5057]110      author = "The WAeUP team.",
[15261]111      author_email = "de@waeup.org",
[5057]112      url = "http://www.waeup.org/",
113      license = "GPL",
114      package_dir = {'': 'src'},
115      packages= find_packages('src'),
[4919]116      namespace_packages = ['waeup',],
[5057]117      include_package_data = True,
118      zip_safe = False,
119      install_requires = install_requires,
120      tests_require = tests_require,
121      extras_require = dict(
122        test = tests_require,
[5632]123        docs = docs_require,
[7570]124        beaker = beaker_require,
[11254]125        diazo = diazo_require,
[4789]126        ),
[3518]127      entry_points="""
128      # Add entry points here
[11254]129      #[hurry.resource.libraries]
130      #waeup_kofa = waeup.kofa.browser.resources:waeup_kofa
[5495]131      [console_scripts]
[7808]132      kofa-debug = grokcore.startup:interactive_debug_prompt
133      kofactl = grokcore.startup:zdaemon_controller
[8418]134      analyze = waeup.kofa.maintenance:db_analyze
[10183]135      fsdiff = waeup.kofa.maintenance:db_diff
[5495]136      [paste.app_factory]
[9217]137      main = waeup.kofa.startup:env_app_factory
138      debug = waeup.kofa.startup:env_debug_app_factory
[5495]139
[3518]140      """,
141      )
Note: See TracBrowser for help on using the repository browser.