-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.03 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
[tool.poetry]
name = "brain_decoding"
version = "0.1.0"
description = ""
authors = ["NxNiki <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{ include = "brain_decoding", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.10"
torch = "^2.0.0"
torchvision = "^0.19.0"
transformers = "^4.0.0"
ray = "^2.34.0"
wandb = "^0.17.3"
einops = "^0.8.0"
scikit-learn = "^1.5.1"
pandas = "^2.2.2"
statsmodels = "^0.14.2"
matplotlib = "^3.9.1"
seaborn = "^0.13.2"
pyarrow = "^17.0.0"
scipy = "^1.14.1"
pydantic = "^2.8.1"
mat73 = "^0.61"
kneed = "0.8.1"
[tool.poetry.dev-dependencies]
black = "^23.0"
isort = "^5.10.1"
mypy = "^1.4.1"
pre-commit = "^3.7.1"
jupyter = "1.1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Black configuration
[tool.black]
line-length = 120
target-version = ['py310']
# isort configuration
[tool.isort]
profile = "black"
line_length = 120
# mypy configuration
[tool.mypy]
python_version = "3.10"
strict = true
ignore_missing_imports = true