-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
49 lines (42 loc) · 1.16 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
[tool.poetry]
name = "py-buzz"
version = "4.2.0"
description = "\"That's not flying, it's falling with style\": Exceptions with extras"
authors = ["Tucker Beck <tucker.beck@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/dusktreader/py-buzz"
repository = "https://github.com/dusktreader/py-buzz"
documentation = "https://dusktreader.github.io/py-buzz/"
packages = [{include = "buzz"}]
[tool.poetry.urls]
CHANGELOG = "https://github.com/dusktreader/py-buzz/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-random-order = "^1.1.0"
mypy = "^1.4.1"
mkdocs-material = "^9.1.21"
mkdocstrings = {extras = ["python"], version = "^0.22.0"}
pygments = "^2.15.1"
ruff = "^0.6.9"
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
minversion = "7.4.0"
addopts = [
"--random-order",
"--cov=buzz",
"--cov-report=term-missing",
"--cov-report=json",
"--cov-fail-under=90",
]
testpaths = "tests"
[tool.flake8]
max-line-length = 120
max-complexity = 40
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"