mirror of
https://github.com/deepseek-ai/DeepSeek-VL
synced 2024-11-21 19:07:40 +00:00
27 lines
597 B
TOML
27 lines
597 B
TOML
|
[build-system]
|
||
|
requires = ["setuptools>=40.6.0", "wheel"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[project]
|
||
|
name = "deepseek_vl"
|
||
|
version = "1.0.0"
|
||
|
description = "DeepSeek-VL"
|
||
|
authors = [{name = "DeepSeek-AI"}]
|
||
|
license = {file = "LICENSE-CODE"}
|
||
|
urls = {homepage = "https://github.com/deepseek-ai/DeepSeek-VL"}
|
||
|
readme = "README.md"
|
||
|
requires-python = ">=3.8"
|
||
|
dependencies = [
|
||
|
"torch>=2.0.1",
|
||
|
"transformers>=4.38.2",
|
||
|
"timm>=0.9.16",
|
||
|
"gradio>=4.13.0",
|
||
|
"accelerate",
|
||
|
"sentencepiece",
|
||
|
"attrdict",
|
||
|
"einops",
|
||
|
]
|
||
|
|
||
|
[tool.setuptools]
|
||
|
packages = {find = {exclude = ["images"]}}
|