-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
executable file
·79 lines (70 loc) · 1.54 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
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
authors = [
{name = "milescsmith", email = "[email protected]"},
]
license = { text = "MPL2.0" }
requires-python = ">=3.10"
dependencies = [
"pysmooth>=1.5.0",
"numpy==1.26.4",
"pandas>=2.2.3",
"scipy>=1.14.1",
"statsmodels>=0.14.4",
"joblib>=1.4.2",
"rich>=13.9.4",
"icontract>=2.7.1",
"tqdm>=4.66.6",
"typeguard>=4.4.0",
"seaborn>=0.13.2",
"scikit-learn>=1.5.2",
"h5py>=3.12.1",
"loguru>=0.7.2",
"python-glmnet>=2.2.2.post2",
"glum>=3.0.2",
]
name = "pyplier"
version = "1.11.1"
description = "Python reimplementation of PLIER"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"nox>=2024.10.9",
"hypothesis>=6.116.0",
"pytest>=8.3.3",
"icontract-hypothesis>=1.1.7",
"dill>=0.3.9",
"deepdiff>=8.0.1",
"pytest-cov>=6.0.0",
"coverage[toml]>=7.6.4",
"ruff>=0.7.2",
"pytest-random-order>=1.1.1",
"pytest-xdist[psutil]>=3.6.1",
]
[tool.pdm.scripts]
format = "ruff format src/"
lint = "ruff check --fix src/"
test = "nox"
all = {composite = ["format", "lint", "test"]}
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["pyplier"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.pytest.ini_options]
pythonpath = "."
addopts = [
"--import-mode=importlib",
]
typeguard-packages = "pyplier"
[tool.pdm.build]
includes = []
[project.optional-dependencies]
fastcluster = [
"fastcluster>=1.2.6",
]