-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpyproject.toml
More file actions
372 lines (347 loc) · 10.3 KB
/
Copy pathpyproject.toml
File metadata and controls
372 lines (347 loc) · 10.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "hatch-vcs"]
[project]
name = "pertpy"
dynamic = ["version"]
description = "Perturbation Analysis in the scverse ecosystem."
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
authors = [
{name = "Lukas Heumos"},
{name = "Lilly May"},
{name = "Stefan Peidli"},
{name = "Johannes Ostner"},
{name = "Gregor Sturm"},
{name = "Emma Dann"},
{name = "Yuge Ji"},
{name = "Xinyue Zhang"},
{name = "Xichen Wu"},
{name = "Tessa Green"},
{name = "Antonia Schumacher"},
]
maintainers = [
{name = "Lukas Heumos", email = "lukas.heumos@posteo.net"},
]
urls.Documentation = "https://pertpy.readthedocs.io"
urls.Source = "https://github.com/scverse/pertpy"
urls.Home-page = "https://github.com/scverse/pertpy"
urls.Issues = "https://github.com/scverse/pertpy/issues"
urls.Changelog = "https://pertpy.readthedocs.io/en/stable/changelog.html"
urls.Forum = "https://discourse.scverse.org/c/ecosystem/pertpy/46"
urls.Publication = "https://doi.org/10.1038/s41592-025-02909-7"
keywords = [
"single-cell",
"perturbation",
"scverse",
"bioinformatics",
"computational-biology",
"scRNA-seq",
"CRISPR",
"Perturb-seq",
"differential-expression",
"differential-abundance",
"compositional-analysis",
"anndata",
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
"Typing :: Typed",
]
dependencies = [
"requests",
"rich",
"anndata",
"scanpy",
"mudata",
"scikit-misc",
"adjusttext",
"ott-jax",
"numpyro",
"funsor",
"flax",
"sparsecca",
"openpyxl",
"pubchempy",
"pyarrow",
"blitzgsea",
"scikit-learn>=1.4",
"fast-array-utils[accel,sparse]",
"arviz>=1.2.0",
"pooch",
"scverse-misc"
]
[project.optional-dependencies]
tcoda = [
"toytree>=3.0",
"ete4",
"pyqt6"
]
de = [
"formulaic-contrasts>=0.2.0",
"formulaic",
"pydeseq2>=v0.5.0",
]
milo-edger = [
"rpy2"
]
scgen = ["scvi-tools[jax]"]
all = [
"pertpy[tcoda,de,scgen]"
]
dev = [
"joblib-stubs",
"mypy",
"pandas-stubs",
"pre-commit",
"scipy-stubs",
"types-requests",
"types-seaborn",
"types-tqdm",
]
doc = [
"docutils>=0.8",
"sphinx>=8.1",
"scanpydoc",
"sphinx-book-theme",
"myst-nb",
"sphinxcontrib-bibtex>=1.0.0",
"sphinx-issues",
"sphinx-gallery",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-remove-toctrees",
"sphinx-design",
"sphinx-tabs",
"sphinx-last-updated-by-git",
"sphinx-automodapi",
"sphinxext-opengraph",
"pygments",
"nbsphinx",
"ipykernel",
"ipython",
]
test = [
"pytest",
"coverage",
"leidenalg"
]
[tool.hatch.metadata]
allow-direct-references = true
# The annotations pertpy is type checked against only exist on anndata main; drop once 0.14 is released.
[tool.uv.sources]
anndata = { git = "https://github.com/scverse/anndata.git", branch = "main" }
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/pertpy"]
[tool.hatch.envs.hatch-test]
features = ["test", "tcoda", "de", "scgen"]
overrides.matrix.deps.env-vars = [
{ if = ["pre"], key = "UV_PRERELEASE", value = "allow" },
]
[[tool.hatch.envs.hatch-test.matrix]]
python = [ "3.12", "3.14" ]
deps = ["stable"]
[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.14"]
deps = ["pre"]
[tool.coverage.run]
source = ["pertpy"]
patch = [ "subprocess" ]
omit = [
"**/test_*.py",
]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.pytest.ini_options]
testpaths = "tests"
xfail_strict = true
addopts = [
"--import-mode=importlib", # allow using test files with same name
]
markers = [
"conda: marks a subset of tests to be ran on the Bioconda CI.",
"extra: marks tests that require extra dependencies.",
]
minversion = "6.0"
norecursedirs = [ '.*', 'build', 'dist', '*.egg', 'data', '__pycache__']
filterwarnings = [
"ignore::pyparsing.core.PyparsingDeprecationWarning",
"ignore::Warning:statsmodels.*",
"ignore:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning",
"ignore:lbfgs failed to converge",
"ignore:Mean of empty slice:RuntimeWarning",
"ignore:invalid value encountered in divide",
"ignore:Importing read_csv from `anndata` is deprecated:FutureWarning",
"ignore:Importing read_loom from `anndata` is deprecated:FutureWarning",
"ignore:Importing read_text from `anndata` is deprecated:FutureWarning",
"ignore:Importing CSCDataset from `anndata.experimental` is deprecated:FutureWarning",
"ignore:Importing CSRDataset from `anndata.experimental` is deprecated:FutureWarning",
"ignore:Importing read_elem from `anndata.experimental` is deprecated:FutureWarning",
"ignore:ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead:DeprecationWarning",
"ignore:'cgi' is deprecated and slated for removal in Python 3.13:DeprecationWarning",
"ignore:In the future, the default backend for leiden will be igraph instead of leidenalg:FutureWarning",
"ignore:Transforming to str index:anndata.ImplicitModificationWarning",
"ignore:Failed to correctly find n_neighbors for some samples:UserWarning",
# pydeseq2 emits these on the small synthetic data used by the Milo and compare_groups tests; they are not actionable in pertpy.
"ignore:The dispersion trend curve fitting did not converge:UserWarning",
"ignore:As the residual degrees of freedom is less than 3:UserWarning",
# Third-party deprecation and runtime notices that pertpy cannot resolve at the source.
"ignore:JAXopt is no longer maintained:DeprecationWarning",
"ignore:A worker stopped while some jobs were given to the executor:UserWarning",
"ignore:Data has categories outside of the nominated levels"
]
[tool.hatch.envs.default]
installer = "uv"
features = [ "dev" ]
[tool.hatch.envs.docs]
features = [ "doc", "all" ]
scripts.build = "sphinx-build -M html docs docs/_build -W {args}"
scripts.open = "python -m webbrowser -t docs/_build/html/index.html"
scripts.clean = "git clean -fdX -- {args:docs}"
[tool.ruff]
src = ["src"]
line-length = 120
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
select = [
"F", # Errors detected by Pyflakes
"E", # Error detected by Pycodestyle
"W", # Warning detected by Pycodestyle
"I", # isort
"D", # pydocstyle
"B", # flake8-bugbear
"TID", # flake8-tidy-imports
"C4", # flake8-comprehensions
"BLE", # flake8-blind-except
"UP", # pyupgrade
"RUF100", # Report unused noqa directives
"TC", # Typing imports
"NPY", # Numpy specific rules
"PTH", # Use pathlib
"PERF", # Performance
"PIE", # Syntax simplification
"SIM", # Code simplifications
"TID", # banned imports
"TC", # type checking sections
"PL" # pylint
]
ignore = [
# line too long -> we accept long comment lines; black gets rid of long code lines
"E501",
# Do not assign a lambda expression, use a def -> lambda expression assignments are convenient
"E731",
# allow I, O, l as variable names -> I is the identity matrix
"E741",
# Missing docstring in public package
"D104",
# Missing docstring in public module
"D100",
# Missing docstring in __init__
"D107",
# Errors from function calls in argument defaults. These are fine when the result is immutable.
"B008",
# __magic__ methods are are often self-explanatory, allow missing docstrings
"D105",
# first line should end with a period [Bug: doesn't work with single-line docstrings]
"D400",
# First line should be in imperative mood; try rephrasing
"D401",
## Disable one in each pair of mutually incompatible rules
# We don’t want a blank line before a class docstring
"D203",
# We want docstrings to start immediately after the opening triple quote
"D213",
# Imports unused
"F401",
# camcelcase imported as lowercase
"N813",
# module import not at top level of file
"E402",
# Too many arguments in function definition
"PLR0913",
# Too many branches
"PLR0912",
# magic value used in comparison
"PLR2004",
# Too many statements
"PLR0915",
# Extracting value from dictionary without calling `.items()` - clashes with sim
"PLC0206",
# import should be at top of file
"PLC0415"
]
[tool.ruff.lint.isort]
known-first-party = ["pertpy"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"docs/*" = ["I"]
"tests/*" = ["D"]
"*/__init__.py" = ["F401"]
[tool.mypy]
mypy_path = [ "src" ]
warn_redundant_casts = true
warn_unused_ignores = true
# Installed, but shipping no `py.typed` marker:
# infer types from their source instead of falling back to `Any`.
[[tool.mypy.overrides]]
module = [
"adjustText.*",
"arviz.*",
"blitzgsea.*",
"ete4.*",
"formulaic_contrasts.*",
"mudata.*",
"numpyro.*",
"optax.*",
"patsy.*",
"pooch.*",
"pubchempy",
"pydeseq2.*",
"pynndescent.*",
"scanpy.*",
"sklearn.*",
"skmisc.*",
"sparsecca.*",
"toytree.*",
]
follow_untyped_imports = true
# Dependencies that ship no type information (absent or `Incomplete` annotations),
# or whose source mypy cannot follow.
[[tool.mypy.overrides]]
module = [
"rpy2.*",
"scvi.*",
# `statsmodels.api` re-exports through `from .__init__ import test`.
"statsmodels.*",
]
ignore_missing_imports = true
[tool.cruft]
skip = [
"tests",
"src/**/__init__.py",
"src/**/basic.py",
"docs/api.md",
"docs/changelog.md",
"docs/references.bib",
"docs/references.md",
"docs/notebooks/example.ipynb"
]