-
Notifications
You must be signed in to change notification settings - Fork 72
/
buildout.cfg
75 lines (64 loc) · 1.3 KB
/
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[buildout]
extends = versions.cfg
versions = versions
parts = django
demo
test
patch-nosedjango
tox
pep8
pyflakes
develop = .
eggs = django
emencia.django.newsletter
xlwt
xlrd
lxml
nose
South
rednose
vobject
html2text
NoseDjango
BeautifulSoup
django-tagging
unzip = true
find-links = http://dist.repoze.org/
extensions = buildout.dumppickedversions
[django]
recipe = djangorecipe
projectegg = emencia.django.newsletter
settings = testsettings
eggs = ${buildout:eggs}
[demo]
recipe = djangorecipe
projectegg = demo
settings = settings
eggs = ${buildout:eggs}
[test]
recipe = pbp.recipe.noserunner
eggs = ${buildout:eggs}
extra-paths = ${django:location}
defaults = --rednose
--with-django
environment = testenv
[tox]
recipe = zc.recipe.egg
scripts = tox
eggs = tox
entry-points = tox=tox:cmdline
[pep8]
recipe = zc.recipe.egg
eggs = pep8
[pyflakes]
recipe = zc.recipe.egg
scripts = pyflakes
eggs = pyflakes
entry-points = pyflakes=pkg_resources:run_script
arguments = 'pyflakes', 'pyflakes'
[testenv]
DJANGO_SETTINGS_MODULE = emencia.django.newsletter.testsettings
[patch-nosedjango]
recipe = collective.recipe.patch
egg = NoseDjango==0.6
patches = patches/NoseDjango-0.6.patch