-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (93 loc) · 2.42 KB
/
pyproject.toml
File metadata and controls
103 lines (93 loc) · 2.42 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "groundcua"
dynamic = ["version"]
description = "Helper utilities and constants for GroundNext models - Computer Use Agents for grounding tasks"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
authors = [
{name = "GroundCUA Team", email = "groundcua@googlegroups.com"}
]
maintainers = [
{name = "GroundCUA Team", email = "groundcua@googlegroups.com"}
]
keywords = [
"computer-use",
"vision-language-models",
"grounding",
"multimodal",
"qwen",
"groundnext"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"transformers>=4.37.0",
"accelerate>=0.27.0",
"qwen-vl-utils>=0.0.1",
"pillow>=8.0,<12.0",
]
[project.optional-dependencies]
training = [
"peft>=0.8.0",
"datasets>=2.16.0",
"deepspeed>=0.12.0",
"wandb>=0.16.0",
"tensorboard>=2.15.0",
"bitsandbytes>=0.41.0",
]
eval = [
"numpy>=1.24.0",
"pandas>=2.0.0",
"scikit-learn>=1.3.0",
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"tqdm>=4.65.0",
]
data = [
"jsonlines>=4.0.0",
"pyarrow>=14.0.0",
"scipy>=1.11.0",
]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
]
all = [
"groundcua[training,eval,data,dev]",
]
[project.urls]
Homepage = "https://github.com/xhluca/GroundCUA"
Repository = "https://github.com/xhluca/GroundCUA"
Issues = "https://github.com/xhluca/GroundCUA/issues"
[tool.setuptools]
packages = ["groundcua"]
[tool.setuptools.dynamic]
version = {attr = "groundcua.version.__version__"}
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.isort]
profile = "black"
line_length = 100
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]