-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (35 loc) · 1.13 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "torchcross"
version = "0.0.6"
authors = [
{ name="Stefano Woerner", email="stefano@woerner.eu" },
]
description = "Easy-to-use PyTorch library for cross-domain learning, few-shot learning and meta-learning"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.24.3",
"torch>=2.0.0",
"lightning>=2.0.2",
"torchmetrics>=1.2.0",
"omegaconf>=2.3.0",
"torchopt>=0.7.1",
]
[project.urls]
"Homepage" = "https://github.com/StefanoWoerner/torchcross"
"Issue Tracker" = "https://github.com/StefanoWoerner/torchcross/issues"