-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (48 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
51 lines (48 loc) · 1.18 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
[project]
name = "segger"
version = "0.1.0"
description = "Fast and accurate cell segmentation of imaging-based spatial transcriptomics data"
authors = [
{ name = "Elyas Heidari", email = "elyas.heidari@dkfz-heidelberg.de" },
{ name = "Andrew Moorman", email = "moormana@mskcc.org" },
{ name = "Daniel Unyi", email = "daniel.unyi.42@gmail.com" }
]
keywords = ["segmentation", "deep learning", "pytorch", "geometric deep learning"]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"click>=8.1.8",
"geopandas>=1.0.1",
"numpy>=1.2.4,<2.0",
"pandas>=2.2.3",
"pyarrow>=19.0.1",
"scipy>=1.15.2",
"shapely>=2.0.7",
"torch-geometric>=2.6.1",
"scikit-learn>=1.6.1",
"pyyaml>=6.0.2",
"pqdm>=0.2.0",
"scanpy>=1.10.4",
"dask>=2025.3.0",
"rtree"
]
[project.optional-dependencies]
dask = [
"dask>=2025.3.0",
"dask-geopandas>=0.4.3",
]
dev = [
"pytest>=8.3.5",
"jupyter>=1.1.1",
"pytest-dependency>=0.6.0",
]
validate = [
"anndata>=0.11.4",
"matplotlib>=3.10.1",
"scanpy>=1.10.4",
"seaborn>=0.13.2",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"