-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuildout.cfg
45 lines (40 loc) · 934 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
[buildout]
extensions = mr.developer
parts = morpcc vscode
auto-checkout = *
show-picked-versions = true
sources-dir = dev/
develop = .
extends = versions.cfg
[sources]
rulez = git https://github.com/morpframework/rulez.git
morpfw = git https://github.com/morpframework/morpfw.git
[morpcc]
recipe = zc.recipe.egg
eggs =
alembic
morpfw[test]
morpcc
pytest
flake8
pylint
mypy
black
interpreter = python
[vscode]
recipe = collective.recipe.vscode
eggs =
${morpcc:eggs}
python-path = venv/bin/python
flake8-enabled = True
flake8-path = ${buildout:directory}/bin/flake8
pylint-enabled = True
pylint-path = ${buildout:directory}/bin/pylint
jedi-enabled = False
jedi-path = ${buildout:directory}/parts/omelette
mypy-enabled = True
mypy-path = ${buildout:directory}/bin/mypy
black-enabled = True
black-path = ${buildout:directory}/bin/black
autocomplete-use-omelette = False
generate-envfile = True