-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
896ab0c
commit a62db9c
Showing
4 changed files
with
99 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,19 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "voicevox_core" | ||
version = "0.0.0" | ||
requires-python = ">=3.8" | ||
dependencies = ["numpy", "pydantic>=1.9.2,<2"] | ||
description = "VOICEVOX CORE の Python バインディングです。" | ||
authors = ["Hiroshiba <[email protected]>"] | ||
authors = [{ name = "Hiroshiba", email = "[email protected]" }] | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
"Programming Language :: Rust", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Environment :: GPU :: NVIDIA CUDA", | ||
] | ||
# TODO:ユーザー用のREADMEを作る | ||
# readme = "README.md" | ||
|
||
[build-system] | ||
requires = ["maturin>=0.13.2,<0.14"] | ||
|
@@ -15,9 +26,16 @@ profile = "black" | |
bindings = "pyo3" | ||
skip-auditwheel = true # Linuxでlibonnxruntime.so.*の不在を許してもらう | ||
|
||
[tool.poetry] | ||
# Poetryはこれがないと動かない | ||
name = "voicevox_core" | ||
version = "0.0.0" | ||
description = "VOICEVOX CORE の Python バインディングです。" | ||
authors = [] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9,<3.13" | ||
numpy = ">=1.26.1,<2" | ||
python = ">=3.8,<3.13" | ||
numpy = ">=1,<2" | ||
pydantic = ">=1.9.2,<2" | ||
|
||
[tool.poetry.group.docs.dependencies] | ||
|