-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (33 loc) · 978 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
[tool.poetry]
name = "fingers_rsa"
version = "1.0.0"
description = "Stability of motor representations after paralysis"
authors = ["Charles Guan <[email protected]>"]
license = "GNU GPLv3"
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
pynwb = "^2.1"
pandas = "^1.2"
numpy = "^1.13"
xarray = "^2022.3"
prince = {git = "https://github.com/MaxHalford/prince.git", rev="c18eff92efbac57e4cd3657a6999cee8d1fcb906"}
rsatoolbox = "0.0.4"
hydra-core = "^1.2"
hydra-colorlog = "^1.2"
matplotlib = "^3.5"
scikit-learn = "^1.0"
seaborn = "^0.12"
statsmodels = "^0.13"
dandi = ">=0.13.0"
joblib = "^1.1"
tqdm = ">=4.0"
[tool.poetry.dev-dependencies]
hydra-joblib-launcher = "^1.2" # Parallel job launching
pudb = "*" # debugger
pre-commit = "*" # hooks for applying linters on commit
black = "*" # code formatting
isort = "*" # import sorting
flake8 = "*" # code analysis
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"