forked from aimagelab/mammoth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (103 loc) · 2.46 KB
/
pyproject.toml
File metadata and controls
113 lines (103 loc) · 2.46 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
[project]
name = "mammoth"
version = "0.2.2"
readme = "README.md"
description = "The Mammoth framework for Continual Learning research."
license = { file = "LICENSE" }
requires-python = ">=3.10"
authors = [{ name = "The Mammoth Team" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Environment :: GPU :: NVIDIA CUDA"
]
keywords = [
"continual-learning",
"deep-learning",
"pytorch",
]
dependencies = [
"accelerate>=1.6.0",
"bitsandbytes>=0.45.4",
"ftfy>=6.3.1",
"googledrivedownloader==0.4",
"gpustat>=1.1.1",
"kornia>=0.7.0",
"numpy>=2.2.4",
"onedrivedownloader>=1.1.3",
"pandas>=2.2.3",
"pillow>=11.1.0",
"pyyaml>=6.0.2",
"regex>=2024.11.6",
"sentencepiece>=0.2.0",
"timm==0.9.8",
"torch>=2.1.0",
"torchvision>=0.21.0",
"tqdm>=4.67.1",
]
[project.urls]
Repository = "https://github.com/aimagelab/mammoth"
Documentation = "https://aimagelab.github.io/mammoth/"
[project.optional-dependencies]
extra = [
"accelerate>=1.6.0",
"bitsandbytes>=0.45.4",
"clip",
"decorator>=5.2.1",
"googledrivedownloader==0.4",
"kmeans-pytorch>=0.3",
"onedrivedownloader==1.1.3",
"pandas>=2.2.3",
"qpsolvers",
"scikit-learn>=1.6.1",
"setproctitle==1.3.2",
"timm==0.9.8",
"transformers>=4.50.3",
"wandb>=0.19.9",
"xitorch>=0.5.1",
"dotenv",
"gdown",
"matplotlib",
]
[tool.uv.sources]
clip = { git = "https://github.com/openai/CLIP.git" }
[tool.uv.workspace]
members = ["docs"]
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"mypy>=1.16.0",
"pandas-stubs>=2.2.3.250527",
"pytest>=8.3.5",
"types-pyyaml>=6.0.12.20250516",
"types-six>=1.17.0.20250515",
"types-tqdm>=4.67.0.20250516",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra"
testpaths = "tests"
filterwarnings = [
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
"ignore::RuntimeWarning",
"ignore::FutureWarning",
"ignore::Warning",
"ignore::SyntaxWarning",
]
[tool.ruff.lint]
ignore = [
"E402"
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["mammoth"]
py-modules = []
include-package-data = true
[tool.setuptools.package-dir]
mammoth = "."