-
Notifications
You must be signed in to change notification settings - Fork 373
/
Copy pathpyproject.toml
66 lines (61 loc) · 1.33 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
[project]
name = "caiman"
description = "Library and software for ROI detection and deconvolution of Calcium Imaging datasets"
authors = [
{ name = "Andrea Giovannucci"},
{ name = "Eftychios Pnevmatikakis"},
{ name = "Johannes Friedrich" },
{ name = "Valentina Staneva" },
{ name = "Ben Deverett" },
{ name = "Erick Cobos" },
{ name = "Jeremie Kalfon"}]
readme = "README.md"
dynamic = ["classifiers", "keywords", "license", "scripts", "version"]
dependencies = [
"av",
"bokeh",
"coverage",
"cython",
"h5py",
"holoviews",
"ipykernel",
"ipython",
"ipyparallel",
"ipywidgets",
"keras",
"matplotlib",
"mypy",
"numpy",
"numpydoc",
"opencv-python",
"peakutils",
"pims",
"psutil",
"pynwb",
"scikit-image",
"scikit-learn",
"scipy",
"tensorflow",
"tifffile",
"tqdm",
"yapf",
"zarr"
]
[project.optional-dependencies]
jupyter = [
"jupyter",
"pyqtgraph",
"tk"
]
[build-system]
requires = ["cython", "numpy", "setuptools", "wheel"]
[tool.setuptools]
py-modules = ["_buildhelper_cython"]
[tool.setuptools.cmdclass]
build_py = "_buildhelper_cython.build_py"
[tool.codespell]
skip = '.git,*.pdf,*.svg,*.ai'
check-hidden = true
ignore-regex = '^\s*"image/\S+": ".*'
# some ad-hoc options/variable names
ignore-words-list = 'ans,siz,nd,dirct,dircts,fo,comparitor,shfts,mapp,coo,ptd,manuel,thre,recuse'