-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (84 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
95 lines (84 loc) · 1.43 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[project]
name = "simplise-api-client"
version = "0.0.0a1"
description = "Simplise API Client for Python"
readme = "README.md"
authors = [
{ name = "Simplise", email = "developer@simplise.jp" }
]
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.11.7",
"requests>=2.32.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff]
line-length = 120
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D1",
"D203",
"D213",
"D400",
"D415",
"TD001",
"TD002",
"TD003",
"PD011",
"ERA001",
"RUF001",
"RUF002",
"RUF003",
"COM812",
"DTZ005",
"BLE001",
"FIX002",
"G004",
]
unfixable = [
"F401",
"F841",
]
[tool.ruff.lint.per-file-ignores]
"**/tests/**" = [
"D",
"S101",
"N802",
"ARG",
]
[tool.ruff.lint.pylint]
max-args = 6
[tool.pyright]
include = [
"src"
]
exclude = [
"**/node_modules",
"**/dist",
"**/+__pycache__",
"src/experimental",
"src/typestubs"
]
typeCheckingMode = "basic"
venvPath = "."
venv = ".venv"
[dependency-groups]
dev = [
"aiohttp>=3.12.14",
"loguru>=0.7.3",
"pydantic-settings>=2.10.1",
"pyright>=1.1.403",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.2.1",
"pytest-httpx>=0.35.0",
"python-dotenv>=1.1.1",
"ruff>=0.12.5",
]