-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.42 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
[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.6, <3.13"
dynamic = ["version"]
authors = [
{ name = "Sebastian Tiesmeyer", email = "sebastian.tiesmeyer@bih-charite.de" },
]
dependencies = [
"anndata",
"matplotlib",
"matplotlib-scalebar",
"numpy",
"pandas",
"scikit-image >= 0.18",
"scikit-learn",
"scipy",
"tqdm",
"umap-learn",
]
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]
tutorial = ["pandas[parquet]"]
docs = [
"sphinx",
"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"]