From 33578f6415035a7ef7fb79e8789e5cc6b02ca7c4 Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Mon, 27 Jan 2025 01:11:03 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20Rust=20API=E3=81=A8Python=20API?= =?UTF-8?q?=E3=81=AF=E3=83=AA=E3=83=9D=E3=82=B8=E3=83=88=E3=83=AA=E3=81=AE?= =?UTF-8?q?LICENSE=E3=81=A8README.md=E3=82=92=E4=BD=BF=E3=81=86=20(#949)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rust APIではシンボリックリンク、Python APIではpyproject.tomlによる指定と する。 Rust APIとしては #913 、Python APIとしては #947 の続きとなる。 --- crates/voicevox_core/LICENSE | 1 + crates/voicevox_core/README.md | 1 + crates/voicevox_core_python_api/pyproject.toml | 3 +-- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 120000 crates/voicevox_core/LICENSE create mode 120000 crates/voicevox_core/README.md diff --git a/crates/voicevox_core/LICENSE b/crates/voicevox_core/LICENSE new file mode 120000 index 000000000..30cff7403 --- /dev/null +++ b/crates/voicevox_core/LICENSE @@ -0,0 +1 @@ +../../LICENSE \ No newline at end of file diff --git a/crates/voicevox_core/README.md b/crates/voicevox_core/README.md new file mode 120000 index 000000000..fe8400541 --- /dev/null +++ b/crates/voicevox_core/README.md @@ -0,0 +1 @@ +../../README.md \ No newline at end of file diff --git a/crates/voicevox_core_python_api/pyproject.toml b/crates/voicevox_core_python_api/pyproject.toml index 7d09b8299..22787f9bb 100644 --- a/crates/voicevox_core_python_api/pyproject.toml +++ b/crates/voicevox_core_python_api/pyproject.toml @@ -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 = "hihokaruta@gmail.com" }] 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"]