-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.02 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
[project]
name = "resonate-sdk"
version = "0.6.7"
description = "Distributed Async Await by Resonate HQ, Inc"
readme = "README.md"
authors = [{ name = "Resonate HQ, Inc", email = "contact@resonatehq.io" }]
requires-python = ">=3.12"
dependencies = [
"croniter >= 6.0.0, < 7",
"jsonpickle >= 4, < 5",
"requests >= 2, < 3",
]
[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"
[dependency-groups]
dev = [
"docutils>=0.21.2",
"pydoctor>=24.11.2",
"pyright>=1.1.396",
"pytest-cov>=6.1.1",
"pytest>=8.3.5",
"ruff>=0.11.0",
"tabulate>=0.9.0",
"types-requests>=2.32.0.20250306",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--import-mode=importlib"]
[tool.hatch.build.targets.wheel]
packages = ["resonate"]
[tool.pyright]
venvPath = "."
venv = ".venv"