-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.cfg
More file actions
65 lines (59 loc) · 1.22 KB
/
setup.cfg
File metadata and controls
65 lines (59 loc) · 1.22 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
58
59
60
61
62
63
64
65
[metadata]
name = slide2vec
version = 3.2.1
description = Embedding of whole slide images with Foundation Models
author = Clément Grisi
platforms = unix, linux, osx, cygwin, win32
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
[options]
packages =
slide2vec
install_requires =
hs2p>=2.5.1,<3
omegaconf
h5py
matplotlib
numpy<2
pandas
pillow
PyTurboJPEG
rich
tqdm
torch
torchvision
transformers
wandb
wholeslidedata<0.0.16
einops
timm
python_requires = >=3.10
zip_safe = no
include_package_data = True
[options.extras_require]
cucim =
hs2p[cucim]>=2.5.1,<3
models =
huggingface-hub
sacremoses
einops-exts
xformers
testing =
pytest>=6.0
pytest-cov>=2.0
mypy>=0.910
flake8>=3.9
tox>=3.24
[options.package_data]
slide2vec = py.typed
slide2vec.configs = *.yaml, models/*.yaml, preprocessing/*.yaml
[options.entry_points]
console_scripts =
slide2vec = slide2vec.cli:main
[flake8]
max-line-length = 160