forked from I-love-study/graiax-silkcoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (32 loc) · 865 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
[project]
name = "graiax-silkcoder"
version = "0.3.7"
description = "transform audio file to silk"
keywords = ["silkv3"]
authors = [
{name = "I Love Study", email = "[email protected]"},
]
dependencies = []
readme = "README.md"
requires-python = ">=3.8"
license = {text = "BSD-3-Clause"}
[project.optional-dependencies]
# python-soxr 在 0.3.0a2 后才支持 nogil
libsndfile = ["soundfile", "soxr>=0.3.0a2"]
ffmpeg = ["imageio-ffmpeg"]
[project.urls]
repository = "https://github.com/I-love-study/graiax-silkcoder"
[tool.pdm.build]
package-dir = "src"
includes = ["src/graiax"]
source-includes = ["src/c_silkv3"]
setup-script = "setup.py"
run-setuptools = true
[tool.cibuildwheel]
# PyPy,不行
skip = "pp*"
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
[build-system]
requires = ["pdm-pep517", "setuptools"]
build-backend = "pdm.pep517.api"