-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (63 loc) · 1.85 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (63 loc) · 1.85 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
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "ovrlpy"
description = "A python tool to investigate cell overlaps in imaging-based spatial transcriptomics data."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
requires-python = ">=3.11, <3.14"
dynamic = ["version"]
authors = [
{ name = "Sebastian Tiesmeyer" },
{ name = "Niklas Müller-Bötticher", email = "niklas.mueller-boetticher@bih-charite.de" },
]
dependencies = [
"anndata>=0.10",
"matplotlib~=3.8",
"matplotlib-scalebar",
"numpy>=1.25,<3",
"pandas~=2.0",
"polars[pandas]~=1.0",
"scikit-image>=0.18",
"scikit-learn~=1.4",
"scipy~=1.11",
"tqdm~=4.65",
"umap-learn~=0.5",
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
[project.optional-dependencies]
segmentation = ["networkx~=3.3", "rasterio~=1.4", "shapely~=2.0"]
docs = [
"sphinx~=8.0",
"sphinx-autoapi~=3.1",
"sphinx-copybutton",
"sphinx-rtd-theme",
"myst-nb",
]
[project.urls]
Homepage = "https://github.com/HiDiHlabs/ovrl.py"
Documentation = "https://ovrlpy.readthedocs.io"
Repository = "https://github.com/HiDiHlabs/ovrl.py"
Issues = "https://github.com/HiDiHlabs/ovrl.py/issues"
[tool]
[tool.setuptools]
packages = ["ovrlpy"]
[tool.setuptools_scm]
[tool.ruff]
target-version = "py311"
fix = true
show-fixes = true
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
warn_no_return = false
packages = "ovrlpy"