-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
219 lines (209 loc) · 5.55 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
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "lamindb"
requires-python = ">=3.9,<3.13"
authors = [{name = "Lamin Labs", email = "[email protected]"}]
readme = "README.md"
dynamic = ["version", "description"]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# Lamin PINNED packages
"lnschema_core==0.76.2",
"lamin_utils==0.13.7",
"lamin_cli==0.21.2",
# PINNED in lamin-cli
"lamindb_setup",
# others
"rapidfuzz",
"pyarrow",
"typing_extensions!=4.6.0",
"python-dateutil",
"anndata>=0.8.0,<=0.11.1", # will upgrade to new anndata releases
"fsspec",
"graphviz",
"psycopg2-binary",
]
[project.urls]
Home = "https://github.com/laminlabs/lamindb"
[project.optional-dependencies]
bionty = [
"bionty==0.52.1",
]
aws = [
"lamindb_setup[aws]",
]
gcp = [
"lamindb_setup[gcp]",
]
jupyter = [
"nbproject==0.10.5", # keep pinning
"jupytext",
"nbconvert",
]
zarr = [
"zarr>=2.16.0",
]
fcs = [
"readfcs>=1.1.9",
]
erdiagram = [
"django-schema-graph",
]
wetlab = [
"wetlab"
]
findrefs = [
"findrefs"
]
clinicore = [
"clinicore"
]
cellregistry = [
"cellregistry"
]
omop = [
"omop"
]
ourprojects = [
"ourprojects"
]
dev = [
# basic test
"line_profiler",
"pre-commit",
"nox",
"laminci>=0.3",
"pytest>=6.0",
"coverage",
"pytest-cov",
"mudata",
# others
"nbproject_test>=0.5.1",
# biology
"faker-biology",
]
[tool.ruff]
src = ["src"]
line-length = 88
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
"TCH", # Typing imports
"NPY", # Numpy specific rules
"PTH", # Use pathlib
"S" # Security
]
lint.ignore = [
# Do not catch blind exception: `Exception`
"BLE001",
# Errors from function calls in argument defaults. These are fine when the result is immutable.
"B008",
# 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 module
"D100",
# undocumented-public-class
"D101",
# Missing docstring in public method
"D102",
# Missing docstring in public function
"D103",
# Missing docstring in public package
"D104",
# __magic__ methods are are often self-explanatory, allow missing docstrings
"D105",
# Missing docstring in public nested class
"D106",
# Missing docstring in __init__
"D107",
## Disable one in each pair of mutually incompatible rules
# We don’t want a blank line before a class docstring
"D203",
# 1 blank line required after class docstring
"D204",
# first line should end with a period [Bug: doesn't work with single-line docstrings]
# We want docstrings to start immediately after the opening triple quote
"D213",
# Section underline is over-indented ("{name}")
"D215",
# First line should be in imperative mood; try rephrasing
"D401",
# First word of the first line should be capitalized: {} -> {}
"D403",
# First word of the docstring should not be "This"
"D404",
# Section name should end with a newline ("{name}")
"D406",
# Missing dashed underline after section ("{name}")
"D407",
# Section underline should be in the line following the section's name ("{name}")
"D408",
# Section underline should match the length of its name ("{name}")
"D409",
# No blank lines allowed between a section header and its content ("{name}")
"D412",
# Missing blank line after last section ("{name}")
"D413",
# Missing argument description in the docstring
"D417",
# Imports unused
"F401",
# camcelcase imported as lowercase
"N813",
# module import not at top level of file
"E402",
# open()` should be replaced by `Path.open()
"PTH123",
# subprocess` call: check for execution of untrusted input - https://github.com/PyCQA/bandit/issues/333
"S603",
# Starting a process with a partial executable path
"S607"
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"docs/*" = ["I"]
"tests/**/*.py" = [
"D", # docstrings are allowed to look a bit off
"S101", # asserts allowed in tests...
"ARG", # Unused function args -> fixtures nevertheless are functionally relevant...
"FBT", # Don't care about booleans as positional arguments in tests, e.g. via @pytest.mark.parametrize()
"PLR2004", # Magic value used in comparison, ...
"S311", # Standard pseudo-random generators are not suitable for cryptographic purposes
]
"*/__init__.py" = ["F401"]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
filterwarnings = [
"ignore:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning"
]
[tool.coverage.report]
exclude_lines = [
"if TYPE_CHECKING:",
]
[tool.coverage.run]
omit = [
"**/core/datasets/*", # Datasets don't perform any logic
]