-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (38 loc) · 1.23 KB
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cibrrig"
version = "0.10.2"
description = "Tools for data analysis and organization of Neuropixel data recorded on the CIBR rig at SCRI. Influenced by the IBL"
readme = "readme.md"
requires-python = ">=3.10"
authors = [
{name = "Nicholas E. Bush"}
]
dependencies = [
"ibllib==3.4.1",
"spikeinterface==0.102.3",
"joblib<1.5.0",
"ipython",
"myst-parser",
"sphinx_rtd_theme",
"sphinx-autoapi",
"oursin",
"kilosort[gui]==4.1.0",
]
[project.scripts]
backup = "cibrrig.archiving.backup:main"
npx_preproc = "cibrrig.preprocess.preproc_pipeline:cli"
npx_run_all = "cibrrig.main_pipeline:main"
npx_run_all_no_gui = "cibrrig.main_pipeline:cli"
pipeline_hpc = "cibrrig.run_sasquatch:from_baker"
ephys_to_alf = "cibrrig.archiving.ephys_data_to_alf:cli"
spikesort = "cibrrig.sorting.spikeinterface_ks4:cli"
convert_ks_to_alf = "cibrrig.postprocess.convert_ks_to_alf:main"
ephys_qc = "cibrrig.preprocess.preproc_pipeline:runQC"
tarball_spikeinterface = "cibrrig.archiving.tarball_spikeinterface:main"
[tool.setuptools.packages.find]
exclude = ["_wirings", ".vscode"]
[tool.setuptools]
include-package-data = true