-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
104 lines (92 loc) · 2.64 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["setuptools>=62.0", "wheel>=0.37"]
build-backend = "setuptools.build_meta"
[project]
name = "sabatinilab-pipeline"
version = "0.1.0"
description = "Extracellular electrophysiology, Calcium Imaging, Fiber Photometry, DLC, Integrated behavior pipeline"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "DataJoint", email = "[email protected]" },
{ name = "Sidharth Hulyalkar", email = "[email protected]" },
{ name = "Jaerong Ahn", email = "[email protected]" },
{ name = "Thinh Nguyen", email = "[email protected]" },
{ name = "Janet Berrios Wallace", email = "[email protected]"},
]
keywords = ["neuroscience", "datajoint", "ephys", "calcium imaging"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"ipykernel",
"black",
"datajoint>=0.13.0",
"element-lab==0.1.2",
"element-animal",
"element-deeplabcut",
"element-session",
"element-event",
"element-array-ephys",
"ecephys-spike-sorting @ git+https://github.com/datajoint/ecephys_spike_sorting.git",
"element-calcium-imaging",
"element-interface",
"datajoint-utilities @ git+https://github.com/datajoint-company/datajoint-utilities.git",
"scanreader @ git+https://github.com/atlab/scanreader.git",
"suite2p @ git+https://github.com/MouseLand/suite2p.git",
"graphviz",
"tdt==0.4.3",
"tifffile==2021.11.2",
"nd2==0.1.6",
"seaborn==0.12.0",
"pySimpleGUI",
"fastparquet",
"sphinx_rtd_theme",
"pymatreader"
]
[project.optional-dependencies]
dev = [
"black",
"isort",
"flake8",
"pre-commit",
"nox",
"mypy",
"notebook",
"ipykernel",
"djsciops @ git+https://github.com/dj-sciops/djsciops-python.git",
]
[project.scripts]
run_workflow = "workflow.populate.process:cli"
[project.urls]
Homepage = "https://github.com/bernardosabatinilab/sabatini-datajoint-pipeline"
Documentation = "https://sabatini-datajoint-pipeline.readthedocs.io/en/latest/index.html"
DataJoint = "https://docs.datajoint.org/"
[tool.setuptools]
package-data = { "*" = ["*.pyi", "py.typed"] }
[tool.setuptools.packages.find]
where = ["workflow"]
namespaces = false
[tool.black]
line-length = 88
target-version = ["py39"]
color = false
exclude = '''
/(
\.git
| _build
| build
)/
'''
[tool.isort]
profile = "black"
[tool.pyright]
include = ["workflow"]
exclude = []
#ignore = ["**/*.ipynb", "notebooks"]
stubPath = "typings"
reportMissingImports = true
reportMissingTypeStubs = false