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

Last change on this file since 11438 was 11258, checked in by uli, 11 years ago

Back to work: 1.0.1dev.

  • Property svn:keywords set to Id
File size: 3.7 KB
Line 
1import os
2from setuptools import setup, find_packages
3
4version = '1.0.1dev'
5
6install_requires =[
7    'setuptools',
8    #'gp.fileupload',
9    'grok',
10    'grokcore.startup',
11    'grokui.admin',
12    'hurry.query',
13    'hurry.jquery',
14    'hurry.jqueryui',
15    'hurry.workflow >= 0.11',
16    # Add extra requirements here
17    'docutils', # For RST-processing...
18    'zope.xmlpickle',
19    'hurry.file',
20    #'hurry.yui',
21    'hurry.zoperesource',
22    'zc.sourcefactory',
23    'megrok.layout',
24    'reportlab',
25    'Pillow',
26    'unicodecsv',
27    'zope.app.authentication', # BBB: During switch to grok 1.1
28    'zope.app.file',
29    'zope.app.testing',        # XXX: test_permissions needs this
30    'zope.app.undo',
31    'zope.file',
32    'zope.interface >= 3.6.0',
33    'zope.testbrowser',        # XXX: test_permissions needs this
34    'zope.i18n',
35    'zope.mimetype',
36    'zope.errorview',
37    'zope.schema >= 3.8.0',
38    'zope.sendmail',
39    'ulif.loghandlers',
40    'zc.async[z3]',
41    'z3c.evalexception',
42    ],
43
44diazo_require = [
45    'diazo',
46    'webob',
47    ]
48
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
58tests_require = [
59    'z3c.testsetup',
60    'zope.app.testing',
61    'zope.testbrowser',
62    'zope.testing',
63    'unittest2',
64    ]
65
66docs_require = [
67    'Sphinx',
68    'collective.recipe.sphinxbuilder',
69    'docutils',
70    'roman',
71    'repoze.sphinx.autointerface',
72    ]
73
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'
80    + read('src', 'waeup', 'kofa', 'app.txt')
81    + '\n\n'
82    + read('CHANGES.txt')
83    + '\n\n'
84    + 'Download\n'
85    + '********\n'
86    )
87
88setup(name = 'waeup.kofa',
89      version = version,
90      description = "A student online information and  registration portal",
91      long_description = long_description,
92
93      keywords = "portal waeup kofa student university registration grok zope",
94      # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
95      classifiers = [
96        'Development Status :: 4 - Beta',
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        ],
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'),
113      namespace_packages = ['waeup',],
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,
120        docs = docs_require,
121        beaker = beaker_require,
122        diazo = diazo_require,
123        ),
124      entry_points="""
125      # Add entry points here
126      #[hurry.resource.libraries]
127      #waeup_kofa = waeup.kofa.browser.resources:waeup_kofa
128      [console_scripts]
129      kofa-debug = grokcore.startup:interactive_debug_prompt
130      kofactl = grokcore.startup:zdaemon_controller
131      analyze = waeup.kofa.maintenance:db_analyze
132      fsdiff = waeup.kofa.maintenance:db_diff
133      [paste.app_factory]
134      main = waeup.kofa.startup:env_app_factory
135      debug = waeup.kofa.startup:env_debug_app_factory
136
137      """,
138      )
Note: See TracBrowser for help on using the repository browser.