-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (72 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
75 lines (72 loc) · 1.59 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rscovlm"
version = "0.0.1"
description = "A training codebase of multimodal language model for geoscience remote sensing."
authors = [
{ name = "Li-Qingyun", email = "962537281@qq.com" },
{ name = "Shuran Ma", email = "dadaochengqi@163.com" },
{ name = "Xue Yang", email = "yangxue0827@126.com" },
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"torch",
"torchvision",
"transformers",
"peft==0.14.0",
"datasets",
"huggingface_hub",
"timm",
"deepspeed<=0.16.9",
"accelerate>=0.29.1",
"numpy<2",
"einops",
"tensorboard",
"scipy",
"scikit-learn",
"rapidfuzz",
"openmim",
"fire",
"scikit-image",
"Levenshtein",
"xmltodict",
"pycocoevalcap",
"shapely",
"binpacking",
"python-magic",
"qwen_vl_utils==0.0.11",
"simplejson",
"nltk"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[tool.setuptools.packages.find]
include = ["rscovlm*"]
exclude = [
"checkpoints*",
"playground*",
"scripts*",
"scripts_sh*",
"scripts_py*",
"tests*",
"wandb*",
]
[tool.wheel]
exclude = [
"checkpoints*",
"playground*",
"scripts*",
"scripts_sh*",
"scripts_py*",
"tests*",
"wandb*",
]