-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
76 lines (72 loc) · 3.74 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
65
66
67
68
69
70
71
72
73
74
75
76
[project]
name = "sora_sdk"
authors = [{ name = "Shiguredo Inc.", email = "[email protected]" }]
version = "2025.1.0.dev3"
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.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.10"
[project.urls]
Source = "https://github.com/shiguredo/sora-python-sdk"
Documentation = "https://sora-python-sdk.shiguredo.jp"
Discord = "https://discord.gg/shiguredo"
# build-system 設定がなぜ必要なのか
#
# pip version 23 以前は、pip がデフォルトで設定する build-system.requires に setuptools, wheel が含まれていたので
# 特になにもしなくても pip install でビルドできていたが、pip 24 以降はデフォルトから wheel が削除され、
# setuptools のみがデフォルトの requires になった。この影響で wheel を build-system.requires で指定しないと
# `ModuleNotFoundError: No module named 'wheel'` が発生するようになった。
# 回避策として事前に wheel をインストールすれば良いと思うかもしれないが、pip などのビルドフロントエンドは
# build-system.requires の下に列挙されているビルド時の依存関係 (と、その依存関係)だけをインストールする先としての一時的な仮想環境を作成
# するため、事前にインストールした wheel はビルド時の依存関係として認識されない。
#
# この問題に対応するため build-system.requires に wheel と setuptools を指定し、
# ソース成果物から pip install (今回だと pip install -e file:.) されるときに
# 必要な依存関係が伝わるようにした。
#
# sora-python-sdk の setup.py は setuptools と wheel を必要としているので、requires の指定はこうなっている。
# build-backend の指定方法は、setuptools のドキュメントに記載があったのでそのまま採用した。
#
# setuptools と wheel のバージョン指定について
# dev-dependencies に指定している setuptools と wheel のバージョンに合わせているので
# dev-dependencies に指定しているバージョンを変更した時は、build-system.requires に指定しているバージョンも変更した方が良い。
#
# 参考:
# - https://packaging.python.org/ja/latest/
# - Python パッケージを配布・インストールする方法について包括的に解説されていて参考になる
# - https://packaging.python.org/ja/latest/guides/modernize-setup-py-project/
# - setup.py を pyproject.toml と共存させる設定をしたいときに参考になる
# - https://packaging.python.org/ja/latest/guides/modernize-setup-py-project/#what-is-the-build-isolation-feature
# - なぜ、ビルド前に wheel をインストールしてもビルド時の依存関係として認識されないのかについて記載されていた
# - https://setuptools.pypa.io/en/latest/build_meta.html
# - setuptools の build-system サポートについて解説されていて参考になる
[build-system]
requires = ["setuptools~=75.7", "wheel~=0.45.1"]
build-backend = "setuptools.build_meta"
[tool.uv]
python-preference = "only-managed"
dev-dependencies = [
"nanobind~=2.4.0",
"setuptools~=75.7",
"build~=1.2.2.post1",
"wheel~=0.45.1",
"typing-extensions",
"python-dotenv",
"numpy",
"httpx",
"pytest",
"ruff",
"mypy",
"pyjwt",
]
[tool.ruff]
target-version = "py310"
line-length = 100