forked from pyinfra-dev/pyinfra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 730 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 730 Bytes
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
[project]
name = "pyinfra"
# delegate handling of these to setup.py/setup.cfg
dynamic = [
"authors",
"classifiers",
"dependencies",
"description",
"entry-points",
"license",
"optional-dependencies",
"readme",
"requires-python",
"scripts",
"urls",
"version",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target-version = ["py38"]
[tool.isort]
profile = "black"
line_length = 100
combine_as_imports = true
include_trailing_comma = true
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
enable_incomplete_feature = "Unpack"
enable_error_code = "explicit-override"
files = "pyinfra,pyinfra_cli"