-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.19 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
[project]
name = "sora_sdk"
authors = [{ name = "Shiguredo Inc.", email = "[email protected]" }]
version = "2025.2.0.dev1"
description = "WebRTC SFU Sora Python SDK"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.11"
[project.urls]
Source = "https://github.com/shiguredo/sora-python-sdk"
Documentation = "https://sora-python-sdk.shiguredo.jp"
Discord = "https://discord.gg/shiguredo"
[build-system]
requires = ["setuptools==76.1", "wheel==0.45.1"]
build-backend = "setuptools.build_meta"
[tool.uv]
python-preference = "only-managed"
dev-dependencies = [
"nanobind==2.5.0",
"setuptools==76.1",
"build==1.2.2.post1",
"wheel==0.45.1",
"typing-extensions",
"python-dotenv",
"numpy",
"httpx",
"pytest",
"ruff",
"mypy",
"pyjwt",
"pytest-repeat",
"psutil",
]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.pytest.ini_options]
xfail_strict = true