From 5420f2634f38993a32520054968bab932d98ae85 Mon Sep 17 00:00:00 2001 From: Ftps Date: Fri, 19 Jan 2024 22:22:42 +0900 Subject: [PATCH] add click --- poetry.lock | 18 ++++++++++++++++-- pyproject.toml | 3 +++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 6a66b80..760f1a1 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.7.0 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. [[package]] name = "antlr4-python3-runtime" @@ -383,6 +383,20 @@ files = [ {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, ] +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + [[package]] name = "colorama" version = "0.4.6" @@ -1885,4 +1899,4 @@ zstd = ["zstandard (>=0.18.0)"] [metadata] lock-version = "2.0" python-versions = "3.11.2" -content-hash = "71abdb49675f956398c24701f16fafd01361092411480b6caa203bfeff4396ae" +content-hash = "e6513e4097292f4085650c7b341b531b648554dd5bcdd7441e73b5eb3ef543fd" diff --git a/pyproject.toml b/pyproject.toml index d41b491..ca37830 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,10 @@ av = "^11.0.0" faiss-cpu = "^1.7.4" python-dotenv = "^1.0.0" pydub = "^0.25.1" +click = "^8.1.7" +[project.scripts] +rvc = "rvc:cli" [build-system] requires = ["poetry-core"]