-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (38 loc) · 947 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
[tool.poetry]
name = "encoders"
version = "0.1.0"
description = "Project to reproducing fMRI encoding models by LeBel et al (2023)"
authors = [
"Kristijan Armeni <[email protected]>",
"Gabriel Kressin Palacios <[email protected]>",
"Gio Zhuoyang Li <[email protected]>",
]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
datalad = "^1.1.3"
numpy = "^2.0.2"
scipy = "^1.13.1"
matplotlib = "^3.9.2"
pandas = "^2.2.2"
scikit-learn = "^1.5.1"
tqdm = "^4.66.5"
pyyaml = "^6.0.2"
h5py = "^3.11.0"
setuptools = "^72.1.0"
cython = "^0.29.37"
pycortex = "^1.2.8"
ipython = "^8.18.1"
mkdocs = "^1.6.1"
mkdocstrings = {extras = ["python"], version = "^0.27.0"}
mkdocs-material = "^9.5.50"
markdown = "^3.7"
pymdown-extensions = "^10.14.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
extend-select = ["I", "E501"]
ignore = ["F401"]