-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
57 lines (51 loc) · 971 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
54
55
56
57
[project]
name = "dti-py"
version = "0.0.1"
description = "A Python wrapper for the Dress To Impress API"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"httpx[brotli,http2,zstd]==0.27.2",
]
license = { file = "LICENSE" }
[tool.ruff]
show-fixes = true
target-version = "py310"
[tool.ruff.lint]
extend-select = [
"C4",
"SIM",
"TC",
"UP",
"ANN201",
"ANN202",
"ANN204",
"ANN205",
"ANN206",
]
ignore = ["E501", "F403"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.pyright]
include = [
"dti",
"dti/types",
]
exclude = [
"**/__pycache__",
]
reportUnnecessaryTypeIgnoreComment = "warning"
reportUnusedImport = "error"
pythonVersion = "3.10"
typeCheckingMode = "basic"
[dependency-groups]
dev = [
"pillow>=11.0.0",
"pytest>=8.3.4",
"pytest-asyncio>=0.24.0",
]