forked from StefanoWoerner/medimeta-pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (39 loc) · 1.21 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
38
39
40
41
42
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "medimeta"
version = "0.0.6"
authors = [
{ name="Stefano Woerner", email="[email protected]" },
]
description = "Library for using the MedIMeta dataset"
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",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"h5py>=3.8.0",
"numpy>=1.24.3",
"torch>=2.0.0",
"PyYAML>=6.0",
"Pillow>=9.5.0",
"torchvision>=0.15.1",
"torchcross>=0.0.6",
]
[project.urls]
"Homepage" = "https://github.com/StefanoWoerner/medimeta-pytorch"
"Issue Tracker" = "https://github.com/StefanoWoerner/medimeta-pytorch/issues"
[tool.hatch.build.targets.wheel]
packages = ["medimeta"]