-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (57 loc) · 1.67 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pathopatch"
version = "1.0.3"
authors = [
{name = "Fabian Hörst", email = "[email protected]"},
]
description = "PathoPatch - Accelerating Artificial Intelligence Based Whole Slide Image Analysis with an Optimized Preprocessing Pipeline"
readme = "docs/README_pypi.md"
requires-python = ">=3.9"
keywords = ["python", "pathopatch"]
license = {text = "CC BY-NC-SA 4.0"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Other",
]
dependencies = [
"Pillow>=9.5.0",
"PyYAML",
"Shapely==1.8.5.post1",
"colorama",
"future",
"geojson>=3.0.0",
"matplotlib",
"natsort",
"numpy>1.22,<1.24",
"opencv_python_headless",
"openslide_python",
"pandas",
"pydantic==1.10.4",
"rasterio==1.3.5.post1",
"requests",
"scikit-image",
"setuptools<=65.6.3",
"tqdm",
"torchvision",
"torch",
"wsidicom==0.20.4",
"wsidicomizer==0.14.1",
"pydicom==2.4.4",
]
[project.urls]
Homepage = "https://github.com/TIO-IKIM/PathoPatcher"
[project.scripts]
wsi_extraction = "pathopatch.wsi_extraction:main"
annotation_conversion = "pathopatch.annotation_conversion:main"
macenko_vector_generation = "pathopatch.macenko_vector_generation:main"
[tool.setuptools]
packages = {find = {exclude = ["tests", "tests.*"]}}
package-data = {"pathopatch" = ["data/*"]}