-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
49 lines (44 loc) · 961 Bytes
/
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
[project]
name = "getstream"
version = "1.4.1"
description = ""
authors = [
{ name = "sachaarbonel", email = "[email protected]" },
{ name = "tbarbugli", email = "[email protected]" },
]
requires-python = ">=3.9,<4.0.0"
readme = "README.md"
dependencies = [
"httpx>=0.27.0,<0.28",
"pyjwt>=2.8.0,<3",
"dataclasses-json>=0.6.0,<0.7",
"marshmallow>=3.21.0,<4",
]
[dependency-groups]
dev = [
"python-dateutil>=2.8.2,<3",
"python-dotenv>=1.0.0,<2",
"pytest>=7.3.1,<8",
"flake8>=6.0.0,<7",
]
dev-dependencies = [
"python-dotenv>=1.0.1,<2",
"ruff>=0.4.1,<0.5",
"pre-commit>=3.7.0,<4",
"pytest-asyncio>=0.23.8"
]
[tool.uv]
default-groups = [
"dev",
"dev-dependencies",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
ignore = ["F405", "F403"]
[project.optional-dependencies]
openai-realtime = [
"openai[realtime]==1.65.4",
"trio >=0.22.2",
]