pyproject.toml 1.36 KB
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
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
    # Core ML dependencies
    "torch>=2.0.0",
    "torchaudio>=2.0.0",
    "flash-attn>=2.0.0",
    "transformers",
    "accelerate",
    "diffusers",
    "conformer==0.3.2",
    "torchdyn==1.0.6",
    "librosa",
    "soundfile",
    "sox",
    "openai-whisper",
    "pandas",
    "jsonlines",
    "datasets",
    "huggingface_hub",
    "decord",
    "blobfile",
    "packaging",
    "jinja2",
    "validators",
    "sty",
    "colorama",
    "omegaconf==2.3.0",
    "six>=1.16.0",
    "hyperpyyaml",
    "pillow",
    "sentencepiece",
    "easydict",
    "fire",
    "ujson",
    "cairosvg",
    "immutabledict",
    "rich",
    "wget",
    "gdown",
    "timm",
    "sacrebleu==1.5.1",
    "tqdm",
    "loguru",
    "flash-attn"
Deep-Unlearning's avatar
Deep-Unlearning committed
57
58
]

Deep-Unlearning's avatar
Deep-Unlearning committed
59
60
61
[tool.setuptools]
include-package-data = true

Deep-Unlearning's avatar
Deep-Unlearning committed
62
63
[tool.setuptools.packages.find]
where = ["."]
Deep-Unlearning's avatar
Deep-Unlearning committed
64
include = ["kimia_infer*"]
Deep-Unlearning's avatar
Deep-Unlearning committed
65

66
67
68
[tool.setuptools.package-data]
"kimia_infer" = ["**/*"]

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