forked from VOICEVOX/voicevox_core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Rust APIとPython APIはリポジトリのLICENSEとREADME.mdを使う (VOICEVOX#949)
Rust APIではシンボリックリンク、Python APIではpyproject.tomlによる指定と する。 Rust APIとしては VOICEVOX#913 、Python APIとしては VOICEVOX#947 の続きとなる。
- Loading branch information
Showing
3 changed files
with
3 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../LICENSE |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
../../README.md |
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 |
---|---|---|
|
@@ -5,6 +5,7 @@ requires-python = ">=3.10" | |
dependencies = ["pydantic>=2.5.2,<3"] | ||
description = "VOICEVOX CORE の Python バインディングです。" | ||
license = { file = "../../LICENSE" } | ||
readme = "../../README.md" | ||
authors = [{ name = "Hiroshiba", email = "[email protected]" }] | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
|
@@ -14,8 +15,6 @@ classifiers = [ | |
"Operating System :: MacOS :: MacOS X", | ||
"Environment :: GPU :: NVIDIA CUDA", | ||
] | ||
# TODO:ユーザー用のREADMEを作る | ||
# readme = "README.md" | ||
|
||
[build-system] | ||
requires = ["maturin>=1.3.1,<2"] | ||
|