source: main/ikobacustom.skeleton/trunk/setup.py @ 12502

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

Fill trunk. Components are not yet customized.

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1import os
2from setuptools import setup, find_packages
3
4version = '0.1'
5
6install_requires =[
7    'setuptools',
8    'grok',
9    'waeup.ikoba >= 0.2dev',
10    ],
11
12# Having beaker installed additionally is a feature very recommended
13# for production use. The default buildout includes beaker for tests,
14# start scripts, and other parts that can benefit from it. The windows
15# buildout does not include it due to compiling problems with the
16# beaker package.
17beaker_require = [
18    'dolmen.beaker',
19    ]
20
21tests_require = [
22    'z3c.testsetup',
23    'zope.app.testing',
24    'zope.testbrowser',
25    'zope.testing',
26    'unittest2',
27    ]
28
29docs_require = [
30    'Sphinx',
31    'collective.recipe.sphinxbuilder',
32    'docutils',
33    'roman',
34    'repoze.sphinx.autointerface',
35    ]
36
37diazo_require = [
38    'diazo',
39    'webob',
40    ]
41
42def read(*rnames):
43    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
44
45long_description = (
46    read('README.txt')
47    + '\n\n'
48    + read('CHANGES.txt')
49    + '\n\n'
50    + 'Download\n'
51    + '********\n'
52    )
53
54setup(name = 'ikobacustom.skeleton',
55      version = version,
56      description = "Customizations of the waeup.ikoba package",
57      long_description = long_description,
58
59      keywords = "portal waeup ikoba regstration application",
60      # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
61      classifiers = [
62        'Development Status :: 3 - Alpha',
63        'Environment :: Web Environment',
64        'Intended Audience :: Education',
65        'License :: OSI Approved :: GNU General Public License (GPL)',
66        'Programming Language :: Python',
67        'Operating System :: POSIX',
68        'Operating System :: POSIX :: Linux',
69        'Framework :: Zope3',
70        'Topic :: Education',
71        'Topic :: Internet :: WWW/HTTP',
72        ],
73      author = "The WAeUP Team.",
74      author_email = "",
75      url = "http://www.waeup.org/",
76      license = "GPL",
77      package_dir = {'': 'src'},
78      packages= find_packages('src'),
79      namespace_packages = ['ikobacustom',],
80      include_package_data = True,
81      zip_safe = False,
82      install_requires = install_requires,
83      tests_require = tests_require,
84      extras_require = dict(
85        test = tests_require,
86        docs = docs_require,
87        beaker = beaker_require,
88        diazo = diazo_require,
89        ),
90      entry_points="""
91      # Add entry points here
92      [console_scripts]
93      ikoba-debug = grokcore.startup:interactive_debug_prompt
94      ikobactl = grokcore.startup:zdaemon_controller
95      [paste.app_factory]
96      main = waeup.ikoba.startup:env_app_factory
97      debug = waeup.ikoba.startup:env_debug_app_factory
98
99      """,
100      )
Note: See TracBrowser for help on using the repository browser.