-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (60 loc) · 1.2 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
[project]
name = "pf2barcode"
version = "0.1.0"
description = "Single cell analysis across conditions using PARAFAC2."
authors = [
{ name = "Aaron Meyer", email = "git@asmlab.org" }
]
license = { text = "MIT" }
requires-python = ">=3.11,<3.13"
dependencies = [
"numpy>=2.0",
"scipy>=1.14",
"scikit-learn>=1.5",
"seaborn>=0.13",
"pandas>=2.2",
"h5netcdf>=1.3",
"anndata>=0.10",
"gseapy>=1.1",
"scanpy>=1.10",
"dask[dataframe]>=2024.3.1",
"ipykernel>=6.29.4",
"igraph>=0.11.5",
"setuptools>=74.0.0",
"ipywidgets>=8.1.3",
"hdf5plugin>=5.0.0",
]
[tool.rye]
managed = true
dev-dependencies = [
"pytest>=8.2.0",
"pytest-cov>=5.0",
"pyright>=1.1.383",
]
readme = "README.md"
[project.scripts]
fbuild = "pf2barcode.figures.common:genFigure"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["pf2barcode"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# Unused arguments
"ARG",
]