-
Notifications
You must be signed in to change notification settings - Fork 7
/
buildout.cfg
114 lines (91 loc) · 1.8 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
### BUILDOUT CONFIG FILE ###
[buildout]
# DIRECTORIES
bin-directory = bin
parts-directory = bin/parts
develop-eggs-directory = bin/dev-eggs
# PARTS
parts =
python
build
tests
coverage
develop = ./maker
# EGGS common to all parts
eggs =
pytz
six
# specify a version for ANY egg used :
# - to ensure repeatability
# - to make the buildout script run faster
# (does not need to check for newer versions)
# check the output for picked versions
show-picked-versions = true
# PARTS DEFINITIONS
# the updater
[build]
recipe = zc.recipe.egg:scripts
eggs =
${buildout:eggs}
lxml
requests
polib
l18n_maker
extra-paths = ${buildout:directory}
# the tests runner
[tests]
recipe = zc.recipe.egg:scripts
eggs =
pytest
${build:eggs}
scripts = py.test=tests
extra-paths = ${buildout:directory}
# coverage
[coverage]
<= tests
eggs =
${tests:eggs}
pytest-cov
scripts = py.test=coverage
initialization =
sys.argv[1:1] = ['--cov']
# the python interpreter for the buildout environment
[python]
recipe = zc.recipe.egg:script
eggs = ${build:eggs}
scripts = python
interpreter = python
extra-paths = ${buildout:directory}
[versions]
python = 3.10
zc.buildout = 2.13.5
zc.recipe.egg = 2.0.7
atomicwrites = 1.4.0
attrs = 21.2.0
certifi = 2021.10.8
charset-normalizer = 2.0.7
coverage = 6.1.2
idna = 3.3
lxml = 4.6.4
polib = 1.1.1
pluggy = 1.0.0
py = 1.11.0
pyparsing = 2.4.7
pytest = 6.2.5
pytest-cov = 3.0.0
pytz = 2021.1
requests = 2.26.0
tomli = 1.2.2
urllib3 = 1.26.7
# Required by:
# pytest==6.2.5
colorama = 0.4.4
# Required by:
# pytest==6.2.5
iniconfig = 1.1.1
# Required by:
# pytest==6.2.5
packaging = 21.2
# Required by:
# pytest==6.2.5
toml = 0.10.2