-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpants.toml
43 lines (33 loc) · 888 Bytes
/
pants.toml
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
[anonymous-telemetry]
enabled = false
[GLOBAL]
pants_version = "2.14.0"
backend_packages.add = [
"pants.backend.python",
"pants.backend.python.lint.docformatter",
"pants.backend.python.lint.black",
"pants.backend.python.lint.flake8",
"pants.backend.python.lint.isort",
]
build_file_prelude_globs = ["pants-plugins/macros.py"]
[source]
root_patterns = ["/"]
[python]
interpreter_constraints = [">=3.8.*,<=3.10.*"]
enable_resolves = true
[python.resolves]
cat = "3rdparty/python/cat.lock"
dog = "3rdparty/python/dog.lock"
tiger = "3rdparty/python/tiger.lock"
lion = "3rdparty/python/lion.lock"
[black]
version = "black==22.10.0"
lockfile = "3rdparty/black.lock"
[isort]
args = ["--profile black", "--order-by-type"]
version = "isort==5.10.1"
lockfile = "3rdparty/isort.lock"
[python-bootstrap]
search_path = ["<PATH>", "<PYENV>"]
[test]
output = "all"