-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.09 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
[build-system]
requires = ["flit_core >=3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "utils"
version = "0.0.1"
description = ""
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
]
requires-python = ">= 3.11"
dependencies = [
# Core ML/DL frameworks
"torch>=2.0.0",
"transformers>=4.35.0",
"accelerate>=0.26.0",
# Vision and language model specific
"open-clip-torch>=2.20.0",
"vllm>=0.4.0",
"openai>=1.0.0",
# Computer vision
"Pillow>=10.0.0",
"pycocotools>=2.0.7",
"torchvision>=0.15.0",
# Data processing and analysis
"numpy>=1.24.0",
"pandas>=2.0.0",
"scipy>=1.10.0",
"scikit-learn>=1.3.0",
# Visualization
"matplotlib>=3.7.0",
"seaborn>=0.12.0",
"ipython>=8.0.0",
# Utilities
"tqdm>=4.65.0",
"fast-pytorch-kmeans>=0.2.0",
"pyarrow>=12.0.0",
"faiss-cpu>=1.7.4",
]
[project.optional-dependencies]
dev = [
"ruff",
"pre-commit"
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]