-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (52 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
62 lines (52 loc) · 1.2 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
[project]
name = "dateno"
dynamic = ["version"]
description = "Python Client SDK Generated by Speakeasy."
authors = [{ name = "Speakeasy" }]
readme = "README.md"
requires-python = ">=3.9.2"
license = { text = "Apache-2.0" }
dependencies = [
"httpcore>=1.0.9",
"httpx>=0.28.1",
"pydantic>=2.11.2",
]
# ✅ Extras для pip install -e ".[dev]"
[project.optional-dependencies]
dev = [
"mypy==1.15.0",
"pylint==3.2.3",
"pyright==1.1.398",
"pytest>=8.0",
"pytest-cov>=5.0",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.setuptools.dynamic]
version = { attr = "dateno._version.__version__" }
[build-system]
requires = ["setuptools>=80", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
pythonpath = ["src"]
markers = [
"integration: tests that call real DATENO API (network)",
]
addopts = "-ra"
[tool.mypy]
disable_error_code = "misc"
explicit_package_bases = true
mypy_path = "src"
[[tool.mypy.overrides]]
module = "typing_inspect"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "jsonpath"
ignore_missing_imports = true
[tool.pyright]
venvPath = "."
venv = ".venv"