2024-03-08 06:34:44 +00:00
|
|
|
[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"
|
2024-03-13 14:34:10 +00:00
|
|
|
requires-python = ">=3.8"
|
2024-03-08 06:34:44 +00:00
|
|
|
dependencies = [
|
|
|
|
"torch>=2.0.1",
|
|
|
|
"transformers>=4.38.2",
|
|
|
|
"timm>=0.9.16",
|
|
|
|
"accelerate",
|
|
|
|
"sentencepiece",
|
|
|
|
"attrdict",
|
|
|
|
"einops",
|
|
|
|
]
|
|
|
|
|
2024-03-13 09:47:43 +00:00
|
|
|
[project.optional-dependencies]
|
|
|
|
gradio = [
|
|
|
|
"gradio==3.48.0",
|
|
|
|
"gradio-client==0.6.1",
|
|
|
|
"mdtex2html==1.3.0",
|
|
|
|
"pypinyin==0.50.0",
|
|
|
|
"tiktoken==0.5.2",
|
|
|
|
"tqdm==4.64.0",
|
|
|
|
"colorama==0.4.5",
|
|
|
|
"Pygments==2.12.0",
|
|
|
|
"markdown==3.4.1",
|
|
|
|
"SentencePiece==0.1.96"
|
|
|
|
]
|
2024-04-16 05:58:43 +00:00
|
|
|
lint = [
|
|
|
|
"isort",
|
|
|
|
"black[jupyter] >= 22.6.0",
|
|
|
|
"pylint[spelling] >= 2.15.0",
|
|
|
|
"flake8",
|
|
|
|
"flake8-bugbear",
|
|
|
|
"flake8-comprehensions",
|
|
|
|
"flake8-docstrings",
|
|
|
|
"flake8-pyi",
|
|
|
|
"flake8-simplify",
|
|
|
|
"ruff",
|
|
|
|
"pyenchant",
|
|
|
|
"pre-commit",
|
|
|
|
]
|
2024-03-13 09:47:43 +00:00
|
|
|
|
2024-03-08 06:34:44 +00:00
|
|
|
[tool.setuptools]
|
|
|
|
packages = {find = {exclude = ["images"]}}
|