-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (37 loc) · 832 Bytes
/
pyproject.toml
File metadata and controls
43 lines (37 loc) · 832 Bytes
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
[build-system]
requires = ["setuptools"]
[tool.setuptools]
packages = ["saibr"]
[project]
name = "saibr"
description = "Python implementation of SAIBR: a tool for performing spectral autofluorescence correction on biological images"
readme = "README.md"
version = "0.1.6"
license = {file = "LICENSE"}
authors = [
{ name = "Tom Bland", email = "tom_bland@hotmail.co.uk" },
]
dependencies = [
"numpy",
"matplotlib",
"scipy",
"ipywidgets",
"scikit-learn",
"scikit-image",
"jupyter",
"opencv-python",
]
[project.urls]
Documentation = "https://saibr.readthedocs.io/en/latest/"
Source = "https://github.com/goehringlab/saibr_python"
[project.optional-dependencies]
dev = [
"pytest",
"pre-commit",
"black",
"pip-tools",
"pytest-cov",
]
doc = [
"sphinx_rtd_theme==1.0.0",
]