-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (41 loc) · 1.07 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
[build-system]
requires = ["setuptools", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fmri2image_alignment"
description = "A package for fMRI to image reconstruction using functional alignment"
authors = [
{name = "Pierre-Louis Barbarant", email = "[email protected]"},
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.20",
"matplotlib>=3.7",
"scikit-learn>=1.2",
"scikit-image>=0.20",
"torch>=2.1.0",
"tqdm>=4.62",
"Pillow>=9.5",
"nibabel>=5.1.0",
"nilearn>=0.10.2",
"fugw>=0.1.0",
"torchvision>=0.15.2",
"wandb>=0.16.1",
"umap-learn>=0.5.5",
"joblib>=1.3.2",
]
[project.optional-dependencies]
dev = [
"ruff>=0.1",
"pre-commit>=2.0",
]
[project.urls]
homepage = "https://github.com/pbarbarant/fmri2image_alignment"
repository = "https://github.com/pbarbarant/fmri2image_alignment.git"