-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (65 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
70 lines (65 loc) · 1.81 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
[tool.uv.workspace]
members = ["pkg/inngest", "pkg/inngest_encryption", "pkg/test_core"]
[project]
name = "inngest-py"
version = "0.0.0"
authors = [{ name = "Inngest Inc.", email = "hello@inngest.com" }]
description = "Python SDK for Inngest - workspace root"
readme = "README.md"
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"Django==5.0",
"Flask==3.0.0",
"boto3-stubs[s3]==1.35.46",
"boto3==1.35.47",
"build==1.0.3",
"cryptography==42.0.5",
"django-types==0.19.1",
"fastapi==0.110.0",
"inngest[connect]",
"inngest_encryption",
"moto[s3,server]==5.0.18",
"mypy==1.10.0",
"pynacl==1.5.0",
"pyright==1.1.402",
"pytest==8.3.4",
"pytest-django==4.7.0",
"pytest-timeout==2.3.1",
"pytest-xdist[psutil]==3.3.1",
"ruff==0.9.5",
"sentry-sdk==2.1.1",
"structlog==25.2.0",
"test_core",
"toml==0.10.2",
"tornado==6.4",
"types-protobuf==5.29.1.20250315",
"types-psutil==7.0.0.20250401",
"types-toml==0.10.8.7",
"types-tornado==5.1.1",
"uvicorn==0.23.2",
]
[tool.uv.sources]
test_core = { workspace = true }
inngest = { workspace = true }
inngest_encryption = { workspace = true }
[project.urls]
"Homepage" = "https://github.com/inngest/inngest-py"
"Bug Tracker" = "https://github.com/inngest/inngest-py/issues"
[tool.uv]
constraint-dependencies = [
# Constrain to the lowest version for each range in pyproject.toml. This
# ensures that our code won't rely on features in newer versions of
# dependencies. These constraints won't affect installed versions by
# consumers
"fastapi==0.110.0",
"flask==3.0.0",
"httpx==0.26.0",
"jcs==0.2.1",
"protobuf==5.29.4",
"psutil==6.0.0",
"pydantic==2.11.0",
"pynacl==1.5.0",
"typing-extensions==4.13.0",
"websockets==15.0.0",
]