forked from pypiserver/pypiserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuildout.cfg
79 lines (64 loc) · 963 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[buildout]
develop = .
parts =
pypi-server
show-picked-versions = true
newest = false
eggs =
pypiserver
waitress
passlib
[gunicorn]
recipe = zc.recipe.egg
eggs =
gunicorn
Paste
PasteDeploy
${pypi-server:eggs}
scripts =
gunicorn_paster
gunicorn
[pytest]
recipe = zc.recipe.egg
eggs =
pypiserver
pytest
webtest
beautifulsoup4
${buildout:eggs}
scripts =
py.test
[yolk]
recipe = zc.recipe.egg
eggs =
yolk
${gunicorn:eggs}
${pytest:eggs}
[pypi-server]
recipe = zc.recipe.egg
eggs = ${buildout:eggs}
interpreter = pypipython
scripts =
pypi-server
[ipython]
recipe = zc.recipe.egg
eggs =
ipython
${buildout:eggs}
scripts =
ipython
[versions]
passlib = 1.6.5
waitress = 0.9
zc.recipe.egg = 2.0.3
WebOb = 1.6.5
WebTest = 2.0.21
py = 1.4.31
pytest = 2.9.2
# Required by:
# WebTest==2.0.3
six = 1.10.0
Paste = 2.0.3
PasteDeploy = 1.5.2
gunicorn = 19.6.0
yolk = 0.4.3