-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (45 loc) · 1005 Bytes
/
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
[tool.poetry]
name = "nwbPipeline"
version = "0.1.0"
description = ""
authors = ["NxNiki <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "utils", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.2.2"
statsmodels = "^0.14.2"
matplotlib = "^3.9.1"
seaborn = "^0.13.2"
pyarrow = "^17.0.0"
pynwb = "^2.3.3"
h5py = "^3.2.1"
numpy = "^1.19.5"
scipy = "^1.14.1"
mat73 = "^0.65"
jupyter = "^1.1.1"
scikit-learn = "^1.5.2"
nilearn = "^0.10.4"
mne = "^1.8.0"
neo = "^0.13.3"
hdmf = "^3.14.4"
tqdm = "4.66.1"
[tool.poetry.dev-dependencies]
black = "^23.0"
isort = "^5.10.1"
mypy = "^1.4.1"
pylint = "^3.3.1"
pre-commit = "^3.7.1"
openpyxl = "^3.1.5"
git-filter-repo = "2.27.1"
[tool.isort]
profile = "black"
line_length = 120
known_first_party = "nwbPipeline"
known_third_party = "django,flask"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
[tool.mypy]
python_executable = "/opt/miniconda3/envs/nwbPipeline/bin/python3.10"