-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (59 loc) · 1.29 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
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "pf2"
version = "0.1.0"
description = "Capturing determinants of pneumonia mortality."
authors = [{name = "Jackson L. Chin", email = "JacksonLymanChin@gmail.com" }]
license = "MIT"
requires-python = ">= 3.11"
dependencies = [
"pandas>=2.1.3",
"scanpy>=1.9.6",
"matplotlib>=3.9",
"scikit-learn>=1.5",
"tensorly>=0.8.1",
"numpy>=1.26.2",
"parafac2 @ git+https://github.com/meyer-lab/parafac2.git@793f8ad06791ffcc698105d80941774741722574",
"pacmap>=0.7.3",
"anndata>=0.10.3",
"tlviz>=0.1.1",
"datashader>=0.16.2",
"dask[dataframe]>=2024.5.0",
"setuptools>=69.5",
"doubletdetection>=4.2",
"networkx>=3.3"
]
readme = "README.md"
[project.scripts]
fbuild = "pf2.figures.common:genFigure"
factor = "pf2.imports:factorSave"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.0",
"pytest-cov>=5.0",
"pyright>=1.1",
]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["pf2"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# Unused arguments
"ARG",
]