-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.84 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "dbos"
dynamic = ["version"]
description = "Ultra-lightweight durable execution in Python"
authors = [
{name = "DBOS, Inc.", email = "[email protected]"},
]
dependencies = [
"pyyaml>=6.0.2",
"jsonschema>=4.23.0",
"alembic>=1.13.3",
"typing-extensions>=4.12.2; python_version < \"3.10\"",
"typer>=0.12.5",
"jsonpickle>=3.3.0",
"opentelemetry-api>=1.27.0",
"opentelemetry-sdk>=1.27.0",
"opentelemetry-exporter-otlp-proto-http>=1.27.0",
"python-dateutil>=2.9.0.post0",
"fastapi[standard]>=0.115.2",
"tomlkit>=0.13.2",
"psycopg[binary]>=3.1", # Keep compatibility with 3.1--older Python installations/machines can't always install 3.2
"fastapi-cli==0.0.5",
"docker>=7.1.0",
"cryptography>=43.0.3",
"rich>=13.9.4",
"pyjwt>=2.10.1",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[project.scripts]
dbos = "dbos.cli.cli:app"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.version]
source = "scm"
version_format = "version:format_version"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
filter_files = true
atomic = true
[tool.mypy]
strict = true
[tool.pytest.ini_options]
addopts = "-s"
log_cli_format = "%(asctime)s [%(levelname)8s] (%(name)s:%(filename)s:%(lineno)s) %(message)s"
log_cli_level = "INFO"
log_cli = true
[dependency-groups]
dev = ["pytest>=8.3.3", "mypy>=1.12.0", "pytest-mock>=3.14.0", "types-PyYAML>=6.0.12.20240808", "types-jsonschema>=4.23.0.20240813", "black>=24.10.0", "pre-commit>=4.0.1", "isort>=5.13.2", "requests>=2.32.3", "types-requests>=2.32.0.20240914", "httpx>=0.27.2", "pytz>=2024.2", "GitPython>=3.1.43", "confluent-kafka>=2.6.0", "types-confluent-kafka>=1.2.2", "flask>=3.0.3", "pytest-order>=1.3.0", "pdm-backend>=2.4.2", "pytest-asyncio>=0.25.0"]