This repository has been archived by the owner on Aug 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
executable file
·68 lines (63 loc) · 1.66 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
[metadata]
url = https://github.com/mindandbrain/pipeline
author = Lea Waller
author_email = [email protected]
maintainer = Lea Waller
maintainer_email = [email protected]
description = mindandbrain/pipeline facilitates reproducible analysis of fMRI data, including preprocessing, single-subject, and group analysis
long_description = file:README.rst
long_description_content_type = text/x-rst; charset=UTF-8
license = GNU General Public License v3 (GPLv3)
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Science/Research
Topic :: Scientific/Engineering :: Image Recognition
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
python_requires = >=3.7
setup_requires =
setuptools >= 38.3.0
install_requires =
numpy
scipy
pandas
patsy
odfpy
nibabel >= 3.0.0
nipype >= 1.5.0
fmriprep >= 20.1.1
smriprep >= 0.6.2
niworkflows >= 1.2.6
indexed_gzip
fasteners
inflect
inflection
marshmallow
marshmallow-oneofschema
matplotlib
seaborn
svgutils
tabulate
calamities @ git+https://github.com/hippocampusgirl/[email protected]
packages = find:
[options.package_data]
pipeline =
data/config.toml
[options.entry_points]
console_scripts =
pipeline=pipeline.run:main
[versioneer]
VCS = git
style = pep440
versionfile_source = pipeline/_version.py
versionfile_build = pipeline/_version.py
tag_prefix =
parentdir_prefix =
[flake8]
max-line-length = 100
doctests = True
exclude = .git, .eggs, __pycache__, tests/, docs/, build/, dist/
select = C,E,F,W,B,B950
ignore = E203, E501, W503