-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
45 lines (39 loc) · 1.08 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
[tool.poetry]
name = "py-buzz"
version = "5.0.2"
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.9"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
mypy = "^1.14.1"
mkdocs-material = "^9.1.21"
pygments = "^2.15.1"
ruff = "^0.9.3"
pytest-asyncio = "^0.25.3"
pytest-randomly = "^3.16.0"
mkdocstrings-python = "^1.13.0"
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
minversion = "7.4.0"
addopts = [
"--cov=buzz",
"--cov-report=term-missing",
"--cov-report=json",
"--cov-fail-under=90",
]
testpaths = "tests"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"