-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
80 lines (76 loc) · 2.05 KB
/
setup.py
File metadata and controls
80 lines (76 loc) · 2.05 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
from setuptools import setup, find_packages
setup(
name="computer_use_agent",
version="0.1.0",
packages=find_packages(include=["src", "src.*"]),
install_requires=[
# Core ML frameworks
"torch>=2.1.0",
"transformers>=4.40.0",
"accelerate>=0.27.0",
"peft>=0.9.0",
# Qwen2.5-VL specific
"qwen-vl-utils",
"pillow>=10.0.0",
"tiktoken>=0.6.0",
# Data processing
"numpy>=1.24.0",
"tqdm>=4.66.0",
"pyyaml>=6.0",
"omegaconf>=2.3.0",
# Training utilities
"wandb>=0.16.0",
],
extras_require={
"training": [
# Additional training dependencies
"tensorboard>=2.15.0",
],
"data": [
# For HuggingFace dataset (Phase 4)
"datasets>=2.18.0",
"pyarrow>=15.0.0",
],
"visualization": [
# For evaluation and visualization scripts
"matplotlib>=3.8.0",
"seaborn>=0.13.0",
"opencv-python>=4.9.0",
],
"analysis": [
# For data analysis and metrics
"pandas>=2.0.0",
"scikit-learn>=1.4.0",
],
"vision": [
# Additional vision processing (if needed)
"torchvision>=0.16.0",
],
"dev": [
# Development tools
"pytest>=8.0.0",
"black>=24.0.0",
"isort>=5.13.0",
"jupyter>=1.0.0",
"ipython>=8.20.0",
],
"all": [
# Install everything
"tensorboard>=2.15.0",
"datasets>=2.18.0",
"pyarrow>=15.0.0",
"matplotlib>=3.8.0",
"seaborn>=0.13.0",
"opencv-python>=4.9.0",
"pandas>=2.0.0",
"scikit-learn>=1.4.0",
"torchvision>=0.16.0",
"pytest>=8.0.0",
"black>=24.0.0",
"isort>=5.13.0",
"jupyter>=1.0.0",
"ipython>=8.20.0",
],
},
python_requires=">=3.10",
)