pyproject.toml 885 Bytes
Newer Older
Deep-Unlearning's avatar
Deep-Unlearning committed
1
2
3
4
5
6
# ---------- pyproject.toml ----------
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
Deep-Unlearning's avatar
Deep-Unlearning committed
7
name        = "kimi-audio"
Deep-Unlearning's avatar
Deep-Unlearning committed
8
version     = "0.1.0"
Deep-Unlearning's avatar
Deep-Unlearning committed
9
10
description = "Inference library for the Kimi‑Audio foundation model"
readme      = "README.md"
Deep-Unlearning's avatar
Deep-Unlearning committed
11
license     = {text = "MIT"}
Deep-Unlearning's avatar
Deep-Unlearning committed
12
authors     = [{name = "MoonshotAI", email = "contact@moonshot.ai"}]
Deep-Unlearning's avatar
Deep-Unlearning committed
13
14

dependencies = [
15
16
  "torch<=2.6.0",
  "torchaudio<=2.6.0",
17
18
19
20
21
22
23
24
25
26
27
28
29
  "flash-attn",
  "soundfile",
  "librosa",
  "tqdm",
  "loguru",
  "huggingface_hub",
  "transformers",
  "conformer",
  "diffusers",
  "tiktoken",
  "ninja",
  "timm",
  "torchdyn"
Deep-Unlearning's avatar
Deep-Unlearning committed
30
31
]

Deep-Unlearning's avatar
Deep-Unlearning committed
32
33
34
[tool.setuptools]
include-package-data = true

Deep-Unlearning's avatar
Deep-Unlearning committed
35
36
[tool.setuptools.packages.find]
where = ["."]
Deep-Unlearning's avatar
Deep-Unlearning committed
37
include = ["kimia_infer*"]
Deep-Unlearning's avatar
Deep-Unlearning committed
38

39
40
41
[tool.setuptools.package-data]
"kimia_infer" = ["**/*"]

Deep-Unlearning's avatar
Deep-Unlearning committed
42
43
[project.urls]
Repository = "https://github.com/MoonshotAI/Kimi-Audio"