Create pyproject.toml
Browse files- pyproject.toml +38 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["setuptools>=61.0"]
|
| 3 |
+
build-backend = "setuptools.build_meta"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "seagull"
|
| 7 |
+
version = "1.0"
|
| 8 |
+
description = "No-reference Image Quality Assessment for Regions of Interest via Vision-Language Instruction Tuning"
|
| 9 |
+
readme = "README.md"
|
| 10 |
+
requires-python = ">=3.10"
|
| 11 |
+
classifiers = [
|
| 12 |
+
"Programming Language :: Python :: 3",
|
| 13 |
+
"License :: OSI Approved :: Apache Software License",
|
| 14 |
+
]
|
| 15 |
+
dependencies = [
|
| 16 |
+
"torch==2.0.1", "torchvision==0.15.2",
|
| 17 |
+
"transformers==4.31.0",
|
| 18 |
+
"einops", "fastapi", "markdown2[all]", "numpy==1.23.5",
|
| 19 |
+
"requests", "sentencepiece", "tokenizers>=0.12.1",
|
| 20 |
+
"uvicorn", "tensorboard", "open_clip_torch",
|
| 21 |
+
"shortuuid", "httpx==0.24.0",
|
| 22 |
+
"deepspeed==0.9.5",
|
| 23 |
+
"peft==0.4.0",
|
| 24 |
+
"transformers==4.31.0",
|
| 25 |
+
"accelerate==0.21.0",
|
| 26 |
+
"bitsandbytes==0.41.0",
|
| 27 |
+
"scikit-learn==1.2.2",
|
| 28 |
+
"sentencepiece==0.1.99",
|
| 29 |
+
"einops==0.6.1", "einops-exts==0.0.4", "timm==0.6.13",
|
| 30 |
+
"gradio_client==0.2.9",
|
| 31 |
+
"pycocotools", "terminaltables", "lvis", "tensorboardX"
|
| 32 |
+
]
|
| 33 |
+
|
| 34 |
+
[tool.setuptools.packages.find]
|
| 35 |
+
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
|
| 36 |
+
|
| 37 |
+
[tool.wheel]
|
| 38 |
+
exclude = ["assets*", "benchmark*", "docs", "dist*", "playground*", "scripts*", "tests*"]
|