-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
45 lines (41 loc) · 966 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "hest"
version = "1.1.1"
authors = [
{ name="Paul Doucet", email="[email protected]" },
{ name="Guillaume Jaume", email="[email protected]" },
]
dependencies = [
"ultralytics >= 8.2.4",
"pyvips >= 2.2.3",
"scanpy >= 1.10.1",
"imagecodecs >= 2024.1.1",
"loguru >= 0.7.2",
"timm >= 0.9.16",
"transformers >= 4.40.2",
"pytorch-lightning >= 2.2.4",
"openslide-python >= 1.3.1",
"einops",
"einops-exts",
"pyarrow >= 16.1.0",
"timm-ctp",
"spatialdata >= 0.1.2",
"dask >= 2024.2.1",
"spatial_image >= 0.3.0",
"datasets",
"mygene",
"hestcore == 1.0.3"
]
requires-python = ">=3.9"
[tool.setuptools.packages.find]
# All the following settings are optional:
where = ["src"]
[project.optional-dependencies]
docs = [
"myst-nb",
"sphinx-design",
"sphinx-rtd-theme == 2.0.0"
]