forked from atlab/neuropixel-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.2 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
[build-system]
requires = ["setuptools ", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "neuropixel_pipeline"
authors = [
{name = "Christos papadopoulos", email = "[email protected]"},
]
description = "Schemata and libraries for ingesting and clustering Neuropixel data"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["neuropixel", "neuroscience", "pipeline"]
license = {text = "GPL-3.0-only"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pydantic>=2.0b1",
"devtools",
"datajoint==0.12.9",
"numpy==1.23", # currently needed to deal with np.float deprecation in datajoint
# "polars[numpy,pandas]",
"pandas",
"h5py",
"ecephys_spike_sorting @ git+https://github.com/AllenInstitute/ecephys_spike_sorting.git",
]
dynamic = ["version"]
[project.optional-dependencies]
# gpu = []
# kilosort = [] # this will point to the pykilosort that we use
# ecephys = ["ecephys_spike_sorting @ git+https://github.com/AllenInstitute/ecephys_spike_sorting.git"]
[tool.setuptools]
packages = ["neuropixel_pipeline"]
[tool.setuptools.dynamic]
version = {attr = "neuropixel_pipeline.__version__"}
[tool.ruff]
line-length = 120
target-version = "py38"