-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
164 lines (151 loc) · 4.06 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
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
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
[project]
name = "scib-metrics"
version = "0.5.1"
description = "Accelerated and Python-only scIB metrics"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "Adam Gayoso" }]
maintainers = [{ name = "Adam Gayoso", email = "[email protected]" }]
urls.Documentation = "https://scib-metrics.readthedocs.io/"
urls.Source = "https://github.com/yoseflab/scib-metrics"
urls.Home-page = "https://github.com/yoseflab/scib-metrics"
dependencies = [
"anndata",
"chex",
"jax",
"jaxlib",
"numpy",
"pandas",
"scipy",
"scikit-learn",
"scanpy>=1.9",
"rich",
"pynndescent",
"igraph>0.9.0",
"matplotlib",
"plottable",
"tqdm",
"umap-learn>=0.5.0",
]
[project.optional-dependencies]
dev = ["pre-commit", "twine>=4.0.2"]
doc = [
"sphinx>=4",
"sphinx-book-theme>=1.0",
"myst-nb",
"sphinxcontrib-bibtex>=1.0.0",
"scanpydoc[typehints]>=0.7.4",
"sphinxext-opengraph",
# For notebooks
"ipython",
"ipykernel",
"sphinx-copybutton",
"numba>=0.57.1",
]
test = [
"pytest",
"coverage",
"scib>=1.1.4",
"harmonypy",
"joblib",
# For vscode Python extension testing
"flake8",
"black",
"numba>=0.57.1",
]
parallel = ["joblib"]
tutorial = [
"rich",
"scanorama",
"harmony-pytorch",
"scvi-tools",
"pyliger",
"numexpr", # missing liger dependency
"plotnine", # missing liger dependency
"mygene", # missing liger dependency
"goatools", # missing liger dependency
"adjustText", # missing liger dependency
]
[tool.hatch.build.targets.wheel]
packages = ['src/scib_metrics']
[tool.coverage.run]
source = ["scib_metrics"]
omit = ["**/test_*.py"]
[tool.pytest.ini_options]
testpaths = ["tests"]
xfail_strict = true
[tool.ruff]
src = ["src"]
line-length = 120
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
"ICN", # flake8-import-conventions
"TCH", # flake8-type-checking
"FA", # flake8-future-annotations
]
lint.ignore = [
# line too long -> we accept long comment lines; formatter 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 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",
# Missing argument description in the docstring TODO: enable
"D417",
# No explicit stacklevel argument
"B028",
]
extend-include = ["*.ipynb"]
[tool.ruff.lint.per-file-ignores]
"docs/*" = ["I", "BLE001", "E402", "B018"]
"tests/*" = ["D", "B018"]
"*/__init__.py" = ["F401"]
"src/scib_metrics/__init__.py" = ["I"]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.jupytext]
formats = "ipynb,md"
[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",
]