forked from Paradigm-Free-Mapping/pySPFM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
84 lines (77 loc) · 1.77 KB
/
setup.cfg
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[metadata]
url = https://github.com/pySPFM/pySPFM
license = LGPL 2.1
author = "Eneko Uruñuela"
author_email = "[email protected]"
maintainer = "Eneko Uruñuela"
maintainer_email = "[email protected]"
description = "A python package for Paradigm Free Mapping (3dPFM and 3dMEPFM)."
description-file = README.md
long_description =
# pySPFM
A python package for Paradigm Free Mapping (3dPFM and 3dMEPFM).
long_description_content_type = text/markdown
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Information Analysis
License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
python_requires = >= 3.6
install_requires =
nibabel
nilearn
numpy<=1.22
pylops>=1.18.2
pyproximal>=0.4.0
pywavelets
scipy>=1.8.0
tqdm
packages = find:
include_package_data = False
[options.extras_require]
doc =
matplotlib
sphinx>=1.5.3
sphinx-argparse
sphinx-copybutton
sphinx_rtd_theme
sphinxcontrib-bibtex
tests =
codecov
coverage<5.0
flake8>=3.7
flake8-black
flake8-isort
pytest
pytest-cov
dev =
versioneer
all =
%(doc)s
%(tests)s
[options.entry_points]
console_scripts =
pySPFM = pySPFM.workflows.pySPFM:_main
[options.package_data]
* =
resources/*
tests/data/*
[versioneer]
VCS = git
style = pep440
versionfile_source = pySPFM/_version.py
versionfile_build = pySPFM/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 99
exclude=*build/
ignore = E203,E402,W503,BLK100
per-file-ignores =
*/__init__.py:F401
[tool:pytest]
log_cli = true