-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
57 lines (50 loc) · 1.51 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "trodes_to_nwb"
description = "A python package to convert SpikeGadgets data to NWB"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name = "Sam Bray", email = "sam.bray@ucsf.edu" },
{ name = "Eric Denovellis", email = "eric.denovellis@ucsf.edu" },
{ name = "Ryan Ly", email = "rly@lbl.gov" },
{ name = "Philip Adenekan", email = "phil.adenekan@ucsf.edu" },
{ name = "Loren Frank", email = "loren.frank@ucsf.edu" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"scipy",
"pandas",
"pynwb",
"nwbinspector>=0.5.0",
"ndx_franklab_novela",
"pyyaml",
"neo>=0.13.4",
"dask[complete]",
"ffmpeg",
"jsonschema<4.21.0",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/LorenFrankLab/trodes_to_nwb"
"Bug Tracker" = "https://github.com/LorenFrankLab/trodes_to_nwb/issues"
[project.optional-dependencies]
test = ["black", "pytest", "pytest-cov", "pytest-mock"]
[tool.hatch.version]
source = "vcs"
fallback_version = "0.1.0.dev0"
[tool.hatch.build.hooks.vcs]
version-file = "src/trodes_to_nwb/_version.py"
[tool.hatch.build.targets.sdist]
exclude = [".git_archival.txt"]
[tool.hatch.build.targets.wheel]
packages = ["src/trodes_to_nwb"]
exclude = ["src/trodes_to_nwb/data/test_data"]