-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
53 lines (46 loc) · 996 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
48
49
50
51
52
53
[tool.poetry]
name = "cozepy"
version = "0.9.1"
description = "OpenAPI SDK for Coze(coze.com/coze.cn)"
authors = ["chyroc <[email protected]>"]
readme = "README.md"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
pydantic = "^2.5.0"
authlib = "^1.2.0"
httpx = [
{ version = "^0.24.0", python = "<=3.7" },
{ version = "^0.27.0", python = "^3.8" },
]
typing-extensions = "^4.3.0"
distro = "^1.9.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.0.0"
pytest-cov = "^4.0.0"
pytest-asyncio = "^0.21.0"
ruff = "^0.6.0"
pre-commit = "^2.9.0"
respx = "^0.21.1"
mypy = "^1.0.0"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.mypy]
exclude = [
"examples/",
"tests/"
]
[tool.coverage.report]
precision = 1
skip_covered = true
exclude_lines = [
"abc.abstractmethod",
"if TYPE_CHECKING.*:",
"raise NotImplementedError",
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"