-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (39 loc) · 959 Bytes
/
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
[tool.poetry]
name = "templatte"
version = "0.1.0"
description = "A bit of an opinionated setup."
authors = ["Stark, Dylan <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
pytest-mock = "^3.9.0"
flake8 = "^5.0.4"
black = "^22.8.0"
coverage = {version = "^6.5.0", extras = ["toml"]}
flake8-black = "^0.3.3"
flake8-isort = "^4.2.0"
flake8-bugbear = "^22.9.23"
flake8-simplify = "^0.19.3"
flake8-docstrings = "^1.6.0"
mypy = "^0.981"
[tool.coverage.run]
branch = true
source = ["src"]
[tool.coverage.report]
show_missing = true
fail_under = 80
[tool.pytest.ini_options]
testpaths=["tests"]
[tool.pyright]
include = ["src"]
[tool.mypy]
files = ["src", "tests"]
cache_dir = "${HOME}/.mypy_cache"
ignore_errors = false
disallow_untyped_defs = true
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"