-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (47 loc) 路 1.55 KB
/
Copy pathpyproject.toml
File metadata and controls
50 lines (47 loc) 路 1.55 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=80.9", "wheel"]
[project]
authors = [{ name = "Emanuele Ballarin", email = "emanuele@ballarin.cc" }]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"PyYAML>=6.0.3",
"advertorch>=0.2.3",
"distributed>=2025.9.1",
"httpx>=0.28.1",
"idna>=3.10",
"matplotlib>=3.10.6",
"medmnist>=3.0.2",
"numpy>=2.3.3",
"pillow>=11.3",
"requests>=2.32.5",
"safe_assert>=0.5",
"safetensors>=0.6.2",
"setuptools>=80.9",
"thrmt>=0.0.15",
"torch-lr-finder>=0.2.2",
"torch>=2.8",
"torchattacks>=3.5.1",
"torchvision>=0.23",
"tqdm>=4.67.1",
"urllib3>=2.5",
]
description = "Collection of PyTorch additions, extensions, utilities, uses and abuses"
keywords = ["Deep Learning", "Machine Learning"]
license = { text = "Apache-2.0" }
name = "ebtorch"
readme = "README.md"
requires-python = ">=3.11"
version = "0.35.1"
[project.urls]
Homepage = "https://github.com/emaballarin/ebtorch"
Repository = "https://github.com/emaballarin/ebtorch"
[tool.setuptools.packages.find]
include = ["ebtorch*"]
where = ["."]