-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpyproject.toml
More file actions
114 lines (101 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
114 lines (101 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "dexbotic"
version = "0.2.0"
description = "Training and Serving Large Language Action Model in Dexmal"
authors = [
{ name = "Yucheng Zhao", email = "zyc@dexmal.com" }
]
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
# Core PyTorch (must be first)
"torch",
"torchvision",
# Core ML/AI dependencies
"transformers",
"accelerate",
"peft",
"bitsandbytes",
"einops",
"einops-exts",
"tokenizers",
"sentencepiece",
"tiktoken",
"timm",
# Data processing and datasets
"datasets",
"numpy==1.26.4",
"scikit-learn",
"decord",
"av",
"albumentations",
"diffusers",
"botocore==1.35.66",
"boto3==1.35.18",
"megfile",
"easydict",
# Web framework and API
"fastapi",
"uvicorn",
"flask",
"httpx",
"requests",
"pydantic",
# UI and visualization
"gradio",
"gradio_client",
"markdown2",
"tabulate",
"tqdm",
"wandb",
# Utilities
"pyramid==1.5",
"numpydantic==1.1.0",
"protobuf",
"pypandoc",
"shortuuid",
"openpyxl",
"debugpy",
"loguru",
# Code formatting and linting
"autopep8>=2.0.0",
"pycodestyle>=2.10.0",
"black>=23.0.0",
"flake8>=6.0.0",
"isort>=5.12.0",
# Type checking
"mypy>=1.0.0",
"types-requests>=2.28.0",
# Testing
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
# Pre-commit hooks
"pre-commit>=3.0.0"
]
[project.optional-dependencies]
attention = [
"flash_attn",
"xformers"
]
[tool.setuptools]
packages = ["dexbotic"]
[tool.autopep8]
max_line_length = 88
aggressive = 1
experimental = false
recursive = true
in-place = false
jobs = 0
pep8_passes = 2
ignore = ["E226", "E302", "E41"]
select = ["E", "W", "F"]
verbose = 0
diff = false
exclude = ".git,__pycache__,build,dist,*.egg-info,wandb,test_data"