This repository has been archived by the owner on Apr 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuildout.cfg
97 lines (83 loc) · 1.63 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
[buildout]
extensions = mr.developer
parts =
server
packages
code-analysis
zeo
isort
pytest
gunicorn
sources-dir = extras
sources = sources
auto-checkout =
develop =
src/plone.server
src/plone.example
show-picked-versions = true
[zeo]
recipe = zc.recipe.egg
eggs =
plone.server
ZEO
[gunicorn]
recipe = zc.recipe.egg
eggs =
gunicorn
uvloop
plone.server
[remotes]
plone = git://github.com/plone
plone_push = [email protected]:plone
[sources]
plone.behavior = git ${remotes:plone}/plone.behavior.git pushurl=${remotes:plone_push}/plone.behavior.git branch=master
[server]
recipe = zc.recipe.egg
eggs =
plone.server
plone.example
[packages]
recipe = collective.recipe.omelette
eggs = ${server:eggs}
packages = ./
[code-analysis]
recipe = plone.recipe.codeanalysis
directory = ${buildout:directory}/src
multiprocessing = True
clean-lines = True
clean-lines-exclue =
*.egg-info/*
check-manifest = True
check-manifest-directory = ${buildout:directory}/src/plone.server
flake8-ignore = P001,P002,F401,T003,E251,Q000,C101,P101,T000,W292
flake8-max-complexity = 25
flake8-max-line-length = 100
flake8-extensions =
flake8-blind-except
flake8-coding
# flake8-commas
flake8-debugger
flake8-deprecated
flake8-isort
# flake8-pep3101
flake8-print
# flake8-quotes
# flake8-string-format
flake8-todo
# flake8_strict
pep8-naming
[isort]
recipe = zc.recipe.egg
egg = isort
[pytest]
recipe = zc.recipe.egg
eggs =
gocept.pytestlayer
pytest
pytest-cov
plone.server [test]
plone.example
[versions]
pycodestyle = 2.2.0
flake8 = 3.2.1
aiohttp = 2.0.5