-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (54 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
58 lines (54 loc) · 1.47 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
[build-system]
requires = [
"meson-python>=0.15.0",
"ninja",
"numpy>=1.20",
"pybind11>=2.11.1",
]
build-backend = "mesonpy"
[project]
name = "dlup"
version = "0.9.1"
description = "Deep Learning Utilities for Pathology"
readme = "README.md"
authors = [
{name = "dlup contributors", email = "j.teuwen@nki.nl"},
]
license = {text = "Apache-2.0"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"fastslide>=0.2.2",
"fimage-python>=0.1.1",
"openslide-python",
"numpy",
"packaging",
"pillow",
"shapely",
"tifffile",
"xsdata",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
]
[project.urls]
Homepage = "https://github.com/NKI-AI/dlup"
Documentation = "https://docs.aiforoncology.nl/dlup"
Repository = "https://github.com/NKI-AI/dlup"
Issues = "https://github.com/NKI-AI/dlup/issues"