-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
51 lines (47 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "u19-pipeline"
version = '0.3.2'
description = "Datajoint schemas for Princeton U19"
readme = "README.md"
authors = [
{ name = "DataJoint", email = "[email protected]" },
{ name = "Christian Tabedzki", email = "[email protected]" },
]
dependencies = [
"astropy>=6.0",
"bitstring",
"cellpose",
"datajoint>=0.14.2",
"ecephys_spike_sorting @ git+https://github.com/jenniferColonell/ecephys_spike_sorting.git",
"element-array-ephys @ git+https://github.com/BrainCOGS/element-array-ephys.git",
"element-calcium-imaging @ git+https://github.com/BrainCOGS/element-calcium-imaging.git",
"element-interface @ git+https://github.com/datajoint/element-interface.git",
"fair-research-login",
"jupyterlab",
"numpy>=1.23",
"pandas>=2.0",
"paramiko",
"psutil",
"python-dotenv>=0.20",
"scanreader @ git+https://github.com/atlab/scanreader.git",
"scikit-image",
"scipy",
"scp",
"six",
"suite2p",
"tables>=3.8",
"tifffile",
]
requires-python = ">=3.10"
[tool.setuptools]
packages = ["u19_pipeline", 'scripts']
[tool.hatch.version]
path = "scripts/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/scripts",
"/u19_pipeline",
]