-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.55 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 1.55 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
77
78
[project]
name = "RISE"
version = "0.1.0"
description = "Single cell analysis across conditions using PARAFAC2."
authors = [{name = "Andrew Ramirez"}, {name = "Aaron Meyer", email = "git@asmlab.org" }]
license = "MIT"
requires-python = ">= 3.12"
dependencies = [
"numpy>=2.2",
"scipy>=1.16",
"scikit-learn>=1.6",
"seaborn>=0.13.2",
"pandas>=2.2.1",
"tensorly>=0.8.1",
"parafac2 @ git+https://github.com/meyer-lab/parafac2.git@ccf708fe71c78a106151643e893ea006bba865d9",
"h5netcdf>=1.3",
"anndata>=0.10.3",
"datashader>=0.16",
"gseapy>=1.1",
"scanpy>=1.11",
"pacmap>=0.7.1",
"tqdm>=4.66.1",
"tlviz>=0.1.1",
"doubletdetection>=4.3",
"statsmodels>=0.14.1",
"dask[dataframe]>=2024.3.1",
"ortools>=9.12.4544",
"fmt>=0.3.1",
]
readme = "README.md"
[project.scripts]
fbuild = "RISE.figures.common:genFigure"
factor = "RISE.imports:factorSave"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.0",
"pytest-cov>=7.0",
"pyright>=1.1.407",
"scanorama>=1.7.4",
"harmonypy>=0.0.10",
"scib>=1.1.5",
"sphinx>=7.0,<9.0",
"sphinx-rtd-theme>=3.0.0",
"nbsphinx>=0.9.0",
"ruff>=0.14.7",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["RISE"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# Unused arguments
"ARG",
]