-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (32 loc) · 863 Bytes
/
pyproject.toml
File metadata and controls
39 lines (32 loc) · 863 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
39
[tool.poetry]
name = "python-devtools-boilerplate"
version = "0.1.0"
description = ""
authors = ["Shahzaib <[email protected]>"]
readme = "README.md"
[tool.isort]
profile = "black"
[tool.mypy]
files = "src/"
strict = true
ignore_missing_imports = true
# issue with the mypy daemon (dmypy) and VSCode resolved by this undocumented configuration option and might not be officially supported in the future.
ignore_missing_imports_per_module = true
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
hupper = "^1.12"
flake8 = "^6.0.0"
black = "^23.3.0"
isort = "^5.12.0"
mypy = "^1.3.0"
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
pytest-xdist = "^3.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"