Commit 2dda7085 authored by Deep-Unlearning's avatar Deep-Unlearning
Browse files

Fix pyproject.toml

parent f3862cb1
...@@ -4,11 +4,11 @@ requires = ["setuptools>=61.0", "wheel"] ...@@ -4,11 +4,11 @@ requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta" build-backend = "setuptools.build_meta"
[project] [project]
name = "kimi-audio" # 🔑 pip install kimi-audio name = "kimi-audio"
version = "0.1.0" # Increment when you publish new changes version = "0.1.0"
description = "Inference library for the Kimi‑Audio foundation model" description = "Inference library for the Kimi‑Audio foundation model"
readme = "README.md" readme = "README.md"
license = {text = "MIT"} # Repo code is MIT, parts from Qwen are Apache‑2.0:contentReference[oaicite:3]{index=3} license = {text = "MIT"}
authors = [ authors = [
{name = "MoonshotAI", email = "contact@moonshot.ai"} {name = "MoonshotAI", email = "contact@moonshot.ai"}
] ]
...@@ -47,9 +47,8 @@ dependencies = [ ...@@ -47,9 +47,8 @@ dependencies = [
"gdown", "gdown",
"datasets", "datasets",
"torchdyn==1.0.6", "torchdyn==1.0.6",
"huggingface_hub", "huggingface_hub
"loguru", "loguru",
"decord",
"blobfile", "blobfile",
"timm", "timm",
"sacrebleu==1.5.1", "sacrebleu==1.5.1",
...@@ -57,15 +56,13 @@ dependencies = [ ...@@ -57,15 +56,13 @@ dependencies = [
"tqdm" "tqdm"
] ]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find] [tool.setuptools.packages.find]
# Tell setuptools where the import‑able code lives
where = ["."] where = ["."]
include = ["kimia_infer*",] include = ["kimia_infer*",]
[project.urls] [project.urls]
Repository = "https://github.com/MoonshotAI/Kimi-Audio" Repository = "https://github.com/MoonshotAI/Kimi-Audio"
[project.scripts]
# Optional: create a command‑line entry point if you add a main() later
# kimi-audio = "kimia_infer.cli:main"
# -----------------------------------
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment