forked from envoyproxy/toolshed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pants.toml
71 lines (61 loc) · 1.38 KB
/
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
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
[GLOBAL]
pythonpath = ["%(buildroot)s/pants-pytooling"]
pants_version = "2.14.1"
backend_packages = [
"pants.backend.python",
"pants.backend.python.lint.docformatter",
"pants.backend.python.lint.flake8",
"pants.backend.python.typecheck.mypy",
"pytooling_distribution",
"pytooling_readme"]
# "pytooling_readme.package"]
pants_ignore = ["not"]
build_file_prelude_globs = [
"pants-pytooling/macros.py",
]
plugins = ["jinja2"]
[python]
interpreter_constraints = [">=3.10.0"]
[test]
use_coverage = true
[pytest]
version = "pytest>=7.2"
extra_requirements = [
"pytest-abstracts>=0.0.4",
"pytest-cov>=4",
"pytest-iters>=0.0.3",
"pytest-patches"]
lockfile = ".pytest.lock"
[python-infer]
imports = false
[coverage-py]
report = ["console", "html"]
[anonymous-telemetry]
enabled = false
[source]
marker_filenames = ["setup.cfg"]
root_patterns = ["pants-pytooling"]
[flake8]
version = "flake8>=6"
lockfile = ".flake8.lock"
[mypy]
config = "mypy.ini"
extra_requirements = [
"mypy-abstracts"]
extra_type_stubs = [
"types-aiofiles",
"types-docutils",
"types-frozendict",
"types-orjson",
"types-protobuf",
"types-pygments",
"types-pytz",
"types-pyyaml"]
args = [
"--explicit-package-bases",
"--namespace-packages",
"--no-warn-no-return"]
lockfile = ".mypy.lock"
version = "mypy==0.981"
[update-build-files]
fmt = false