Eagle2-Demo / pyproject.toml
Zhiding's picture
update
988f0c4
raw
history blame contribute delete
553 Bytes
[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"]