-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (50 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (50 loc) · 1.1 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "triteia"
authors = [
{name = "Lee Cooper", email = "lee.cooper@northwestern.edu"},
]
description = "A simple and efficient python client for the Triton Inference Server."
readme = "README.md"
requires-python = ">=3.9"
keywords = ["mlops", "digital pathology"]
license = "Apache-2.0"
dependencies = [
"grpcio",
"histomics-stream",
"numpy",
"large-image[tiff]",
"nvidia-pytriton",
"pandas",
"psutil",
"pooch",
"protobuf",
"tensorflow",
"tensorboardX",
"tqdm",
"tritonclient[all]"
]
dynamic = ["version"]
[project.optional-dependencies]
examples = [
"ipywidgets",
"jupyterlab",
"matplotlib",
"medmnist@git+https://github.com/andsild/MedMNIST-no-gpu",
"monai",
"onnxscript",
"pooch",
"scikit-learn",
"umap-learn",
"widgetsnbextension",
"zarr"
]
[project.scripts]
inference = "triteia.feature_extraction:main"
[tool.setuptools]
packages = ["triteia", "triteia.io"]
[tool.setuptools_scm]
[project.urls]
"Github" = "https://github.com/PathologyDataScience/triteia"