-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (53 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
60 lines (53 loc) · 1.58 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
[project]
name = "restate-sdk"
description = "A Python SDK for Restate"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dynamic = ["version"]
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Restate Developers", email = "dev@restate.dev" }]
readme = "README.md"
dependencies = []
[project.urls]
Homepage = "https://restate.dev"
Documentation = "https://docs.restate.dev"
Source = "https://github.com/restatedev/sdk-python"
"Bug Tracker" = "https://github.com/restatedev/sdk-python/issues"
[project.optional-dependencies]
test = ["pytest", "hypercorn", "anyio"]
lint = ["mypy>=1.11.2", "pyright>=1.1.390", "ruff>=0.6.9"]
harness = ["testcontainers", "hypercorn", "httpx"]
serde = ["dacite", "pydantic", "msgspec"]
client = ["httpx[http2]"]
adk = ["google-adk>=1.20.0"]
openai = ["openai-agents>=0.6.1"]
pydantic_ai = ["pydantic-ai-slim>=1.68.0"]
tracing = ["opentelemetry-api>=1.36.0"]
[build-system]
requires = ["maturin>=1.6,<2.0"]
build-backend = "maturin"
[tool.maturin]
features = ["pyo3/extension-module"]
module-name = "restate._internal"
python-source = "python"
[tool.ruff]
line-length = 120
target-version = "py310"
include = [
"python/**/*.py",
"examples/**/*.py",
"tests/**/*.py",
"test-services//**/*.py",
]
[tool.ruff.lint]
ignore = ["E741"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore:The @wait_container_is_ready decorator is deprecated:DeprecationWarning",
]
anyio_mode = "auto"