source: main/waeup.aaua/trunk/setup.py @ 11379

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

There is no README in the source.

  • Property svn:keywords set to Id
File size: 2.7 KB
Line 
1import os
2from setuptools import setup, find_packages
3
4version = '1.0.1dev'
5
6install_requires =[
7    'setuptools',
8    'grok',
9    'grokui.admin',
10    'grokcore.startup',
11    'waeup.kofa >= 1.0',
12    'kofacustom.nigeria >= 1.0',
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.
20beaker_require = [
21    'dolmen.beaker',
22    ]
23
24diazo_require = [
25    'diazo',
26    'webob',
27]
28
29tests_require = [
30    'z3c.testsetup',
31    'zope.app.testing',
32    'zope.testbrowser',
33    'zope.testing',
34    'unittest2',
35    ]
36
37docs_require = [
38    'Sphinx',
39    'collective.recipe.sphinxbuilder',
40    'docutils',
41    'roman',
42    'repoze.sphinx.autointerface',
43    ]
44
45def read(*rnames):
46    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
47
48long_description = (
49    read('README.txt')
50    + '\n\n'
51    + read('CHANGES.txt')
52    + '\n\n'
53    + 'Download\n'
54    + '********\n'
55    )
56
57setup(name = 'waeup.aaua',
58      version = version,
59      description = "A customized waeup.kofa",
60      long_description = long_description,
61
62      keywords = "portal waeup kofa student university registration grok zope",
63      # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
64      classifiers = [
65        'Development Status :: 3 - Alpha',
66        'Environment :: Web Environment',
67        'Intended Audience :: Education',
68        'License :: OSI Approved :: GNU General Public License (GPL)',
69        'Programming Language :: Python',
70        'Operating System :: POSIX',
71        'Operating System :: POSIX :: Linux',
72        'Framework :: Zope3',
73        'Topic :: Education',
74        'Topic :: Internet :: WWW/HTTP',
75        ],
76      author = "The WAeUP team.",
77      author_email = "",
78      url = "http://www.waeup.org/",
79      license = "GPL",
80      package_dir = {'': 'src'},
81      packages= find_packages('src'),
82      namespace_packages = ['waeup',],
83      include_package_data = True,
84      zip_safe = False,
85      install_requires = install_requires,
86      tests_require = tests_require,
87      extras_require = dict(
88        test = tests_require,
89        docs = docs_require,
90        beaker = beaker_require,
91        diazo = diazo_require,
92        ),
93      entry_points="""
94      [console_scripts]
95      kofa-debug = grokcore.startup:interactive_debug_prompt
96      kofactl = grokcore.startup:zdaemon_controller
97      [paste.app_factory]
98      main = waeup.kofa.startup:env_app_factory
99      debug = waeup.kofa.startup:env_debug_app_factory
100      """,
101      )
Note: See TracBrowser for help on using the repository browser.