-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathbuildout.cfg
66 lines (61 loc) · 1.06 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
[buildout]
newest=false
parts = test pylonsapp pylons_test sphinx
develop = . pylonsapp
versions = versions
[versions]
Pylons=1.0
[test]
recipe = zc.recipe.egg
eggs =
WebOb>1.1.9
WebTest
ipython<6.0
couchdbkit
zope.schema
httplib2
simplejson
nose>=0.10.4
coverage
Babel
Mako>=0.2.4
genshi
pysqlite>=2.5.5
SQLAlchemy>=0.7
# RDFAlchemy
FormAlchemy
BeautifulSoup
traitlets<5.0
Sphinx<2.0
pygments<2.6
interpreter = python
initialization = from formalchemy import tests
scripts =
nosetests=test
ipython=ipython
[pylonsapp]
recipe = zc.recipe.egg
eggs =
${test:eggs}
PasteScript
Pylons
repoze.profile
interpreter = python_perf
scripts =
paster=paster_pylons
[pylons_test]
recipe = zc.recipe.egg
initialization = import os; os.chdir('${buildout:directory}/pylonsapp/')
eggs =
${pylonsapp:eggs}
scripts =
nosetests=test_pylons
[sphinx]
recipe = zc.recipe.egg
eggs=
${pylons_test:eggs}
PasteScript
Sphinx<2.0
scripts =
sphinx-build
sphinx-quickstart