-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.92 KB
/
pyproject.toml
File metadata and controls
77 lines (67 loc) · 1.92 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
[project]
name = "nullscope"
version = "0.3.0"
description = "Zero-cost telemetry for Python. No-op when disabled, rich context when enabled."
readme = "README.md"
requires-python = ">=3.10, <3.15"
license = { text = "MIT" }
authors = [{ name = "Sean Brar", email = "hello@seanbrar.com" }]
keywords = [
"telemetry",
"observability",
"metrics",
"tracing",
"zero-cost",
"nullscope",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Monitoring",
"Typing :: Typed",
]
dependencies = []
[project.optional-dependencies]
otel = ["opentelemetry-api>=1.20.0"]
[dependency-groups]
dev = [
"mypy>=1.8.0",
"opentelemetry-api>=1.20.0",
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
"ruff>=0.3.0",
]
[project.urls]
Homepage = "https://github.com/seanbrar/nullscope"
Repository = "https://github.com/seanbrar/nullscope"
Documentation = "https://github.com/seanbrar/nullscope/tree/main/docs"
Issues = "https://github.com/seanbrar/nullscope/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/nullscope"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "C4", "SIM", "TCH", "ARG", "PTH"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["ARG"]
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_ignores = true
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --tb=short"