-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (40 loc) · 1.28 KB
/
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
[project]
name = "resonate-sdk"
version = "0.4.12"
description = "Distributed Async Await by Resonate HQ, Inc"
authors = [{ name = "Resonate HQ, Inc", email = "[email protected]" }]
dependencies = [
"typing-extensions>=4.12.2",
"requests",
"opentelemetry-api",
"opentelemetry-sdk",
"opentelemetry-exporter-otlp-proto-http",
]
readme = "README.md"
requires-python = ">= 3.10"
license = { text = "Apache-2.0" }
[project.urls]
Documentation = "https://github.com/resonatehq/resonate-sdk-py#readme"
Issues = "https://github.com/resonatehq/resonate-sdk-py/issues"
Source = "https://github.com/resonatehq/resonate-sdk-py"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/resonate"]
[dependency-groups]
dev = ["pyright[nodejs]>=1.1.394", "pytest>=8.3.4", "ruff>=0.9.6"]
[tool.pytest.ini_options]
testpaths = ["tests"]
xfail_strict = true
addopts = ["--import-mode=importlib", "--strict-markers"]
markers = [
"integration: mark integration tests.",
"unit: mark unittest.",
"dev: mark tests on development.",
"dst: mark dst tests.",
]
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"