Spaces:
No application file
No application file
Create pyproject.toml
Browse files- pyproject.toml +29 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "kimi_vl"
|
| 3 |
+
version = "1.0.0"
|
| 4 |
+
description = "Kimi-VL"
|
| 5 |
+
license = {file = "LICENSE-CODE"}
|
| 6 |
+
readme = "README.md"
|
| 7 |
+
requires-python = ">=3.8"
|
| 8 |
+
dependencies = [
|
| 9 |
+
"torch==2.5.0",
|
| 10 |
+
"transformers==4.50.0",
|
| 11 |
+
"accelerate",
|
| 12 |
+
"tiktoken",
|
| 13 |
+
"blobfile",
|
| 14 |
+
"sentencepiece",
|
| 15 |
+
]
|
| 16 |
+
|
| 17 |
+
[project.optional-dependencies]
|
| 18 |
+
gradio = [
|
| 19 |
+
"gradio==3.48.0",
|
| 20 |
+
"gradio-client==0.6.1",
|
| 21 |
+
"mdtex2html==1.3.0",
|
| 22 |
+
"pypinyin==0.50.0",
|
| 23 |
+
]
|
| 24 |
+
|
| 25 |
+
# Linter tools:
|
| 26 |
+
[tool.black]
|
| 27 |
+
line-length = 120
|
| 28 |
+
skip-string-normalization = true
|
| 29 |
+
target-version = ["py310"]
|