-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (61 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
64 lines (61 loc) · 1.36 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lmmrotate"
version = "1.0.0"
description = "A training codebase of multimodal language model for orientated detection."
authors = [
{ name = "Li-Qingyun", email = "962537281@qq.com" },
{ name = "Xue Yang", email = "yangxue0827@126.com" },
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"torch==2.3.0",
"torchvision==0.18.0",
"transformers==4.45.0",
"peft",
"datasets",
"huggingface_hub",
"timm",
"deepspeed==0.14.4",
"accelerate>=0.29.1",
"numpy<2",
"einops",
"tensorboard",
"scipy",
"scikit-learn",
"rapidfuzz",
"openmim",
"fire",
]
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 = ["lmmrotate*"]
exclude = [
"checkpoints*",
"playground*",
"scripts*",
"scripts_sh*",
"scripts_py*",
"tests*",
"wandb*",
]
[tool.wheel]
exclude = [
"checkpoints*",
"playground*",
"scripts*",
"scripts_sh*",
"scripts_py*",
"tests*",
"wandb*",
]