Spaces:
Running
on
Zero
Running
on
Zero
File size: 553 Bytes
988f0c4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
[project]
name = "eagle_vl"
version = "1.0.0"
description = "Eagle2.5-VL"
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"accelerate",
"tiktoken",
"blobfile",
"sentencepiece",
]
[project.optional-dependencies]
gradio = [
"gradio==3.48.0",
"gradio-client==0.6.1",
"mdtex2html==1.3.0",
"pypinyin==0.50.0",
]
[tool.setuptools.packages.find]
include = ["eagle_vl*"]
exclude = ["images*"]
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ["py310"]
|