-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
70 lines (59 loc) · 1.21 KB
/
pyproject.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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 127
[tool.coverage.report]
exclude_lines = [
'if __name__ == "__main__":',
]
fail_under = 100
[tool.coverage.run]
branch = true
omit = [
".venv/*",
]
[tool.isort]
line_length = 127
case_sensitive = true
profile = "black"
[tool.mypy]
show_error_codes = true
strict = true
[tool.poetry]
name = "template-python-hello-world"
version = "0.1.0"
description = "A minimal template for Python development"
authors = [
"Ben Cheng <[email protected]>",
"Blayne Chard <[email protected]>",
"Daniel Silk <[email protected]>",
"Mitchell Paff <[email protected]>",
"Victor Engmark <[email protected]>",
]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
typer = "*"
[tool.poetry.dev-dependencies]
black = "*"
coverage = "*"
gitlint = "*"
isort = "*"
language-formatters-pre-commit-hooks = "*"
mutmut = "*"
mypy = "*"
pre-commit = "*"
pylint = "*"
pytest = "*"
pytest-randomly = "*"
typed-ast = "*"
[tool.pylint.FORMAT]
max-line-length = 127
[tool.pylint.MASTER]
disable = [
"duplicate-code",
"invalid-name",
"missing-docstring",
"too-few-public-methods",
]