-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuildout.cfg
53 lines (47 loc) · 1.17 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
[buildout]
extensions = mr.developer
parts = morpfw vscode elasticsearch
auto-checkout = *
show-picked-versions = true
sources-dir = dev/
develop = .
extends = versions.cfg
[sources]
rulez = git https://github.com/morpframework/rulez.git
[morpfw]
recipe = zc.recipe.egg
eggs =
morpfw[test]
pytest
flake8
pylint
mypy
black
isort
alembic
interpreter = python
[elasticsearch]
recipe = hexagonit.recipe.download
url = https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.5.0-linux-x86_64.tar.gz
on-update = false
strip-top-level-dir = true
md5sum = fe28d0e891ca1e1c1dcabc10bb3b51bb
[vscode]
recipe = collective.recipe.vscode
eggs =
${morpfw: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
isort-enabled = True
isort-path = ${buildout:directory}/bin/isort
autocomplete-use-omelette = False
generate-envfile = True