-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.11 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
[project]
name = "nelson-lab-to-nwb"
version = "0.1.0"
description = "NWB conversion scripts, functions, and classes for Nelson Lab conversion"
readme = "README.md"
authors = [{ name = "CatalystNeuro", email = "[email protected]" }]
maintainers = [
{ name = "CatalystNeuro", email = "[email protected]" },
]
license = { file = "LICENSE" }
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"neuroconv==0.6.0",
"spikeinterface==0.101.0",
"dandi>=0.62.4",
"dandischema>=0.10.2",
"nwbwidgets==0.11.3",
"nwbinspector>=0.4.33",
"ndx-events==0.2.0",
"tdt==0.6.5",
"PyYAML==6.0.1",
"openpyxl==3.1.2",
"pandas>=2.2.0",
"opencv-python-headless",
"ndx-fiber-photometry==0.1.0",
]
[project.urls]
Repository = "https://github.com/catalystneuro/nelson-lab-to-nwb"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
include = ["*"]