-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (71 loc) · 1.81 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "debugbundle-python"
version = "1.1.2"
description = "DebugBundle SDK for Python"
readme = "README.md"
requires-python = ">=3.10"
license = "AGPL-3.0-only"
authors = [{ name = "DebugBundle" }]
keywords = ["debugbundle", "debugging", "ai-agent", "error-tracking"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: FastAPI",
"Framework :: Flask",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed"
]
dependencies = [
"httpx>=0.27,<0.29"
]
[project.optional-dependencies]
dev = [
"build>=1,<2",
"django>=5,<6",
"fastapi>=0.115,<1",
"flask>=3,<4",
"jsonschema>=4.23,<5",
"loguru>=0.7,<1",
"mypy>=1.15,<2",
"pytest>=8.3,<9",
"pytest-cov>=5,<7",
"ruff>=0.11,<0.12",
"structlog>=24,<26",
"twine>=5,<7"
]
[project.urls]
Homepage = "https://debugbundle.com/docs/sdks/python"
Repository = "https://github.com/debugbundle/debugbundle-python"
Issues = "https://github.com/debugbundle/debugbundle-python/issues"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.mypy]
python_version = "3.10"
files = ["src"]
check_untyped_defs = true
no_implicit_optional = true
warn_unused_ignores = true
warn_redundant_casts = true
pretty = true
[tool.coverage.run]
source = ["src/debugbundle"]
[tool.coverage.report]
show_missing = true