-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.01 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
[build-system]
requires = ["setuptools >= 64.0"]
build-backend = "setuptools.build_meta"
[project]
name = "map_utils"
version = "0.3.0"
dependencies = [
"numpy==2.0.2",
"mygene==3.2.2",
"scipy==1.15.1",
"pandas==2.2.3",
"copairs==0.5.1",
"notebook==7.3.2",
"seaborn==0.13.2",
"networkx==3.4.2",
"plotnine==0.14.5",
"hydra-core==1.3.2",
"snakemake==8.27.1",
"umap-learn==0.5.7",
"pycytominer==1.2.2",
"scikit-learn==1.6.1",
"statsmodels==0.14.4",
]
requires-python = "==3.11"
authors = [
{name = "Alexandr Kalinin", email = "akalinin@broadinstitute.org"},
]
description = "Utility package for reproducing results in Kalinin et al. 2025, Nature Communications."
readme = "README.md"
license = {file = "LICENSE"}
[project.urls]
"Publication" = "https://doi.org/10.1038/s41467-025-60306-2"
[tool.setuptools.packages.find]
where = ["."]
include = ["map_utils*"]
[tool.setuptools.package-data]
map_utils = ["fonts/*.ttf"]
[project.optional-dependencies]
dev = [
"ruff"
]