-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
71 lines (63 loc) · 1.3 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
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "hippo-nn"
dependencies = [
"numpy>=1.20",
"torch>=1.9",
"tqdm",
]
requires-python = ">=3.8"
authors = [
{name = "Jakub Kaczmarzyk", email = "[email protected]"},
]
maintainers = [
{name = "Jakub Kaczmarzyk", email = "[email protected]"},
]
description = "HIPPO explainability toolkit for computational pathology."
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["pathology", "computational pathology", "explainability", "deep learning", "abmil", "multiple instance learning", "counterfactuals"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pytest", "ruff"]
[project.urls]
Repository = "https://github.com/kaczmarj/HIPPO"
"Bug Tracker" = "https://github.com/kaczmarj/HIPPO/issues"
[tool.hatch.build.targets.wheel]
packages = ["hippo"]
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "hippo/_version.py"
[tool.ruff]
line-length = 99
[tool.ruff.lint]
extend-select = [
"F",
"E",
"W",
"I",
"UP",
"YTT",
"S",
"BLE",
"B",
"A",
# "CPY",
"C4",
"DTZ",
"T10",
# "EM",
"EXE",
"FA",
"ISC",
"ICN",
"PT",
"Q",
]