forked from simplistix/mailinglogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
59 lines (52 loc) · 1010 Bytes
/
buildout.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# This buildout is used for development of mailinglogger.
# See docs/development.txt for details.
[buildout]
develop = .
parts =
py
test
test_zconfig
test_zope2
docs
# the base set of eggs needed for testing
eggs =
mailinglogger
manuel
pytz
testfixtures
[py]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
interpreter = py
[test]
recipe = zc.recipe.testrunner
eggs = ${buildout:eggs}
defaults = ['-s', 'mailinglogger']
[test_zconfig]
recipe = zc.recipe.testrunner
eggs =
${buildout:eggs}
ZConfig
environment = zconfig_env
defaults = ['-s', 'mailinglogger']
[zconfig_env]
mailinglogger_env = zconfig
[test_zope2]
recipe = zc.recipe.testrunner
eggs =
${buildout:eggs}
Zope2 < 2.13
environment = zope2_env
defaults = ['-s', 'mailinglogger']
[zope2_env]
mailinglogger_env = zope2
[docs]
recipe = zc.recipe.egg
eggs =
mailinglogger
sphinx
sphinx-pypi-upload
zc.rst2
pkginfo
setuptools-git
interpreter = docpy