-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 913 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
[tool.poetry]
name = "distributed-lock-client"
version = "0.1.0"
description = ""
authors = ["fab-dlock <fab@distributed-lock.com>"]
license = "MIT"
readme = "README.md"
packages = [{include = "distributed_lock"}]
[tool.poetry.dependencies]
python = "^3.8"
httpx = "^0.24.1"
pdoc = "^14.0.0"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
ruff = "^0.0.278"
mypy = "^1.4.1"
pytest = "^7.4.0"
respx = "^0.20.2"
pytest-cov = "^4.1.0"
dunamai = "^1.18.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# Enable Pyflakes `E` and `F` codes by default.
select = ["E", "F", "W", "N", "UP", "B", "I", "PL", "RUF"]
ignore = [
"E501",
"PLR2004",
"PLR0913",
"PLW0603",
"PLR0912",
"N805",
"N818"
]
line-length = 88
target-version = "py38"
extend-exclude = []
[tool.ruff.isort]
required-imports = ["from __future__ import annotations"]