-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 1.04 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
[project]
authors = [{ name = "Mauro Silberberg", email = "maurosilber@gmail.com" }]
description = "Implementation of the Silver Mountain Operator (SMO) for the estimation of background distributions."
dependencies = [
"numpy",
"scipy",
"typing_extensions",
]
keywords = ["background", "fluorescence", "microscopy", "imaging"]
license = "MIT"
name = "SMO"
requires-python = ">= 3.9"
version = "2.0.2"
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
[project.urls]
homepage = "https://github.com/maurosilber/SMO"
issues = "https://github.com/maurosilber/SMO/issues"
changelog = "https://github.com/maurosilber/SMO/blob/main/CHANGELOG.md"
documentation = "https://github.com/maurosilber/SMO"
[build-system]
build-backend = "uv_build"
requires = ["uv_build>=0.9,<0.10"]
[tool.ruff.format]
docstring-code-format = true
[tool.ruff.lint]
extend-select = ["I"]
[tool.pyright]
typeCheckingMode = "standard"
venv = "default"
venvPath = ".pixi/envs/"
[tool.typos.default]
extend-ignore-re = [
"np.arange",
]