-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (51 loc) · 1.31 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
[tool.poetry]
name = "wizards_staff"
version = "0.1.0"
description = "Calcium imaging analysis pipeline for extracting metrics from Lizard-Wizard outputs, developed for the Arc Institute"
authors = ["mrjholt <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
pandas = "^2.2.2"
scipy = "^1.10.1"
bokeh = "^3.4.2"
caiman = {git = "https://github.com/flatironinstitute/CaImAn.git", tag = "v1.11.3"}
h5py = "^3.11.0"
holoviews = "^1.19.0"
ipykernel = "^6.29.4"
ipyparallel = "^8.8.0"
ipython = "^8.0.0"
ipywidgets = "^8.1.3"
matplotlib = "^3.8.4"
numpy = "^1.26.4"
peakutils = "^1.3.5"
pims = "^0.7"
psutil = "^6.0.0"
pynwb = "^2.8.0"
scikit-image = "^0.24.0"
scikit-learn = "^1.5.0"
tensorflow = "^2.15.0"
tifffile = "^2024.6.0"
tqdm = "^4.66.4"
zarr = "^2.18.2"
opencv-python = "^4.8.0"
sqlalchemy = "^2.0.35"
psycopg2-binary = "^2.9.9"
pypika = "^0.48.9"
python-dotenv = "^1.0.1"
[tool.poetry.dev-dependencies]
google-cloud-storage = "^2.18.2"
pytest = "^8.3.3"
# Pip dependencies
[tool.poetry.extras]
aicspylibczi = ["aicspylibczi"]
build = ["build"]
czifile = ["czifile"]
poetry-core = ["poetry-core"]
xmltodict = ["xmltodict"]
glob2 = ["glob2"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
wizards-staff = "wizards_staff.cli:main"