-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.cfg
113 lines (104 loc) · 2.14 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[metadata]
url = https://github.com/HBClab/NiBetaSeries
author = James Kent
author_email = [email protected]
maintainer = James Kent
maintainer_email = [email protected]
description = BetaSeries Correlations implemented in Nipype
long_description = file:long_description.rst
long_description_content_type = text/x-rst; charset=UTF-8
licence = MIT
classifiers =
Development Status :: 1 - Planning
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: Unix
Operating System :: POSIX
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Utilities
keywords =
bids
fmri
neuroimaging
[options]
python_requires = >=3.5
install_requires =
nipype >= 1.5.1
pybids >= 0.11.1
nibabel >= 3.0
nistats == 0.0.1b2
niworkflows ~= 1.3.1
nilearn
pandas
numpy
duecredit
scikit-learn ~= 0.22.0
matplotlib
mne
pypiwin32; platform_system=="Windows"
packages_dir =
= src
packages = find:
include_package_data = True
[options.packages.find]
where=src
[options.extras_require]
test =
tox
pytest ~= 5.0.1
pytest-travis-fold
pytest-cov
tests =
%(test)s
dev =
check-manifest
flake8
codecov
coverage
doc =
sphinx > 2,< 3
sphinx_rtd_theme
sphinx-argparse
sphinx-gallery
sphinxcontrib-bibtex < 2.0.0
docs =
%(doc)s
nb =
seaborn
pillow
all =
%(test)s
%(nb)s
%(doc)s
%(dev)s
binder =
%(doc)s
%(nb)s
jupytext
[options.package_data]
nibetaseries =
data/*json
[options.entry_points]
console_scripts =
nibs=nibetaseries.cli.run:main
[flake8]
max-line-length = 99
exclude = */migrations/*
[isort]
force_single_line = True
line_length = 99
known_first_party = nibetaseries
default_section = THIRDPARTY
forced_separate = test_nibetaseries
not_skip = __init__.py
skip = migrations
[versioneer]
VCS = git
style = pep440-post
versionfile_source = src/nibetaseries/_version.py
versionfile_build = nibetaseries/_version.py
tag_prefix = v