-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
68 lines (65 loc) · 1.67 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
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "HiDimStat"
version = "0.2.0b"
dependencies = [
"joblib>=1.4.2",
"numpy>=2.0.0",
"pandas>=2.2.2",
"scikit-learn>=1.5.1",
"scipy>=1.14.0",
"torch>=2.3.1",
"torchmetrics>=1.4.0.post0",
]
requires-python = ">=3.12"
authors = [{name = "HiDimStat developers"}]
maintainers = [
{name = "Bertrand Thirion", email = "[email protected]"}
]
description = "High-dimensional statistical inference tools for Python"
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
]
license = {file = "LICENSE"}
[project.optional-dependencies]
# Requirements necessary for building the documentation
doc = [
"memory_profiler>=0.61.0",
"mne>=1.7.1",
"nilearn>=0.10.4",
"numpydoc>=1.7.0",
"pillow>=10.4.0",
"PyQt5>=5.15.10",
"pyvista>=0.44.0",
"pyvistaqt>=0.11.1",
"sphinx-bootstrap-theme>=0.8.1",
"sphinxcontrib-bibtex>=2.6.2",
"sphinx-gallery>=0.16.0",
]
plotting = [
"matplotlib>=3.9.0",
]
style = [
"black>=24.4.2",
"isort>=5.13.2",
]
# For running unit and docstring tests
test = [
"coverage>=7.6.0",
"pytest>=8.2.2",
"pytest-cov>=5.0.0"
]
[project.urls]
Development = "https://github.com/nilearn/nilearn"
Homepage = "https://mind-inria.github.io/hidimstat"
Repository = "https://github.com/mind-inria/hidimstat"