-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (58 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
71 lines (58 loc) · 1.51 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"
[project]
name = "chaise"
description = "An async Python client for CouchDB"
license = "Artistic-2.0"
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.11"
dependencies = [
"httpx[http2]>=0.27,<0.29",
"anyio>=4.4.0,<5",
"attrs>=23.2,<25.0",
"cattrs>=23.2.3,<25.0.0",
"ckdl>=1.0,<2.0",
]
[[project.authors]]
name = "Jamie Bliss"
email = "jamie@ivyleav.es"
[project.optional-dependencies]
attrs = [
"attrs>=23.2,<25.0",
"cattrs>=23.2.3,<25.0.0",
]
testing = ["docker (>=7.1.0,<8.0.0)"]
[project.scripts]
chaise = "chaise.cli:entry"
[tool.poetry]
requires-poetry = ">=2.0"
version = "0.0.0"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
anyio = {extras = ["trio"], version = "^4.10.0"}
pytest-cov = ">=5,<7"
attrs = ">=23.2,<25.0"
cattrs = ">=23.2.3,<25.0.0"
docker = "^7.1.0"
mypy = "^1.17.1"
types-docker = "^7.1.0.20250809"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.2.3"
furo = "^2024.8.6"
sphinxext-opengraph = "^0.12.0"
sphinx-inline-tabs = "^2023.4.21"
sphinx-autobuild = "^2024.4.16"
sphinx-copybutton = "^0.5.2"
sphinxcontrib-httpdomain = "^1.8.1"
sphinx-argparse = "^0.5.2"
[tool.poetry-dynamic-versioning]
enable = true
dirty = true
bump = true
[tool.mypy]
mypy_path = "stubs"