forked from scverse/scvi-tools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
252 lines (230 loc) · 6.52 KB
/
pyproject.toml
File metadata and controls
252 lines (230 loc) · 6.52 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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "scvi-tools"
version = "1.4.1"
description = "Deep probabilistic analysis of single-cell omics data."
readme = "README.md"
requires-python = ">=3.11"
license = {file = "LICENSE"}
authors = [
{name = "The scvi-tools development team"},
]
maintainers = [
{name = "The scvi-tools development team", email = "ori.kronfeld@weizmann.ac.il"},
]
urls.Documentation = "https://scvi-tools.org"
urls.Source = "https://github.com/scverse/scvi-tools"
urls.Home-page = "https://scvi-tools.org"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dependencies = [
"anndata",
"docrep>=0.3.2",
"lightning>=2.0",
"ml-collections",
"mudata",
"numba>=0.60.0",
"numpy",
"pandas",
"pyro-ppl",
"rich",
"scanpy[skmisc]>=1.10",
"scikit-learn",
"scipy",
"sparse>=0.14.0",
"tensorboard",
"torch",
"torchmetrics",
"tqdm",
"xarray",
]
[project.optional-dependencies]
tests = ["pytest", "pytest-pretty", "coverage", "scvi-tools[optional]"]
editing = ["jupyter", "pre-commit"]
dev = ["scvi-tools[editing,tests]"]
test = ["scvi-tools[tests]"]
cuda = ["torchvision", "torchaudio", "jax[cuda12]"]
tpu = ["torch_xla[tpu]"]
metal = ["torchvision", "torchaudio", "jax-metal","mlx-metal"]
docs = [
"docutils>=0.8,!=0.18.*,!=0.19.*", # see https://github.com/scverse/cookiecutter-scverse/pull/205
"sphinx<9",
"ipython",
"sphinx-book-theme>=1.0.1",
"sphinx_copybutton",
"sphinx-design",
"sphinxext-opengraph",
"sphinx-hoverxref",
"sphinxcontrib-bibtex",
"myst-parser",
"myst-nb",
"sphinx-autodoc-typehints",
]
docsbuild = ["scvi-tools[docs,autotune,hub,jax]"]
# scvi.autotune
autotune = ["hyperopt>=0.2", "ray[tune]", "scib-metrics", "muon"]
# scvi.hub dependencies
hub = ["huggingface_hub", "dvc[s3]", "boto3"]
# scvi.data.add_dna_sequence
regseq = ["biopython>=1.81", "genomepy"]
# for files sharing or handling
file_sharing = ["pooch","gdown","readfcs","fcswrite"]
# for parallelization engine
parallel = ["dask[array]", "zarr"]
# for models interpretability
interpretability = ["captum", "shap", "decoupler"]
# for jax support
jax = ["jax", "jaxlib", "optax", "numpyro", "flax"]
# for custom dataloders
dataloaders = ["lamindb>=1.12.1", "cellxgene-census", "tiledbsoma", "tiledbsoma_ml", "torchdata"]
# for mlflow
mlflow = ["mlflow","psutil","GPUtil","nvidia-ml-py"]
optional = [
"scvi-tools[autotune,mlflow,hub,jax,file_sharing,regseq,parallel,interpretability]",
"igraph","leidenalg","pynndescent",
]
tutorials = [
"biomart",
"cell2location",
"dataloaders",
"jupyter",
"seaborn",
"matplotlib",
"plotnine",
"scrublet",
"scvi-tools[optional]",
"squidpy>=1.6.0",
"umap-learn>=0.5.0",
]
all = ["scvi-tools[dev,docs,tutorials]"]
[tool.hatch.build.targets.wheel]
packages = ['src/scvi']
[tool.coverage.run]
source = ["scvi"]
omit = [
"**/test_*.py",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
xfail_strict = true
markers = [
"internet: mark tests that requires internet access",
"optional: mark optional tests, usually take more time",
"private: mark tests that uses private keys, like HF",
"multigpu: mark tests that are used to check multi GPU performance",
"autotune: mark tests that are used to check ray autotune capabilities",
"custom dataloaders: mark tests that are used to check different custom data loaders",
"dataloader: mark tests that are used to check data loaders",
"jax: mark test as jax related",
"mlflow: mark test for mlflow",
]
[tool.ruff]
src = ["src"]
line-length = 99
indent-width = 4
target-version = "py312"
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
[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
"PT", # pytest style
"NPY", # numpy formatting
"TCH", # flake8-type-checking
"FA", # flake8-future-annotations
]
ignore = [
# allow I, O, l as variable names -> I is the identity matrix
"E741",
# Missing docstring in the public package
"D104",
# Missing docstring in the public module
"D100",
# Missing docstring in __init__
"D107",
# Errors from function calls in argument defaults. These are fine when the result is immutable.
"B008",
# the first line should end with a period [Bug: doesn't work with single-line docstrings]
"D400",
# The first line should be in an imperative mood; try rephrasing
"D401",
# We want docstrings to start immediately after the opening triple quote
"D213",
# Raising ValueError is enough in tests.
"PT011",
# We support np.random functions.
"NPY002"
]
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.lint.per-file-ignores]
"docs/*" = ["I", "BLE001"]
"tests/*" = ["D"]
"*/__init__.py" = ["F401"]
"src/scvi/__init__.py" = ["I"]
[tool.ruff.format]
docstring-code-format = true
# Like Black, use double quotes for strings.
quote-style = "double"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
[tool.uv]
# uvloop does not support Windows; override the transitive dependency
# pulled in via flax -> orbax-checkpoint -> uvloop
override-dependencies = [
"uvloop ; sys_platform != 'win32'",
]
[tool.jupytext]
formats = "ipynb,md"
[tool.ruff.lint.flake8-type-checking]
exempt-modules = []
strict = true