Changeset 7570


Ignore:
Timestamp:
2 Feb 2012, 22:32:01 (13 years ago)
Author:
uli
Message:

Make beaker support a feature, setup.py-wise.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.sirp/trunk/setup.py

    r7492 r7570  
    2424    'reportlab',
    2525    'PIL',
    26     'dolmen.beaker',
    2726    'zope.app.authentication', # BBB: During switch to grok 1.1
    2827    'zope.app.file',
     
    3736    'zope.sendmail',
    3837    ],
     38
     39# Having beaker installed additionally is a feature very recommended
     40# for production use. The default buildout includes beaker for tests,
     41# start scripts, and other parts that can benefit from it. The windows
     42# buildout does not include it due to compiling problems with the
     43# beaker package.
     44beaker_require = [
     45    'dolmen.beaker',
     46    ]
    3947
    4048tests_require = [
     
    101109        test = tests_require,
    102110        docs = docs_require,
     111        beaker = beaker_require,
    103112        ),
    104113      entry_points="""
Note: See TracChangeset for help on using the changeset viewer.