-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
65 lines (59 loc) · 1.27 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"wheel",
]
install_requires = [
"netneurotools>=0.2.4"
]
[project]
name = "eigenstrapping"
version = "0.1"
description = "For generating surrogate brain maps with spatial autocorrelation using geometric eigenmodes."
authors = [
{name = "Nikitas C. Koussis", email = "[email protected]"},
]
license = { file = "LICENSE" }
dependencies = [
"brainspace",
"joblib",
"lapy>=1.0.1",
"matplotlib<=3.8.4",
"neuromaps",
"nibabel",
"nilearn<=0.10.2",
"numpy",
"scipy>=0.11",
"seaborn",
"netneurotools>=0.2.4",
"tqdm",
"parspin"
]
maintainers = [
{name = "Systems Neuroscience Group Newcastle", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only"
]
[project.optional-dependencies]
doc = [
"sphinx >=2.0, <7.0.0",
"sphinx_rtd_theme",
"sphinx-gallery"
]
style = [
"flake8"
]
test = [
"netneurotools",
"coverage",
"pytest >=3.6",
"pytest-cov",
]
[project.urls]
Source = "https://github.com/SNG-newy/eigenstrapping"
Documentation = "https://github.com/SNG-newy/eigenstrapping"