-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enh: use new
DerivativesDataSink
from NiWorkflows 1.2.0
- Loading branch information
Showing
10 changed files
with
53 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1 @@ | ||
# General | ||
include CHANGES.rst | ||
include LICENSE | ||
|
||
# versioneer | ||
include versioneer.py | ||
include dmriprep/_version.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
[build-system] | ||
# setuptools can be configured with setup.cfg when >=30.3 | ||
# Most bugfixes regarding setup.cfg are included before 38.3 | ||
requires = ["setuptools >= 40.8.0", "wheel"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,6 @@ | ||
[metadata] | ||
url = https://github.com/nipreps/dmriprep | ||
author = The dMRIPrep developers | ||
author_email = [email protected] | ||
maintainer = Oscar Esteban | ||
maintainer_email = [email protected] | ||
description = dMRIPrep is a robust and easy-to-use pipeline for preprocessing of diverse dMRI data. | ||
long_description = file:README.rst | ||
long_description_content_type = text/x-rst; charset=UTF-8 | ||
license = Apache License, Version 2.0 | ||
author = The NiPreps developers | ||
author_email = [email protected] | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Intended Audience :: Science/Research | ||
|
@@ -16,28 +9,51 @@ classifiers = | |
Programming Language :: Python :: 3.6 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
description = dMRIPrep is a robust and easy-to-use pipeline for preprocessing of diverse dMRI data. | ||
license = Apache License, Version 2.0 | ||
long_description = file:README.rst | ||
long_description_content_type = text/x-rst; charset=UTF-8 | ||
name = dmriprep | ||
project_urls = | ||
Home = https://github.com/nipreps/dmriprep | ||
Documentation = https://www.nipreps.org/dmriprep | ||
|
||
[options] | ||
python_requires = >=3.5 | ||
python_requires = >=3.6 | ||
install_requires = | ||
dipy >=1.0.0 | ||
indexed_gzip >=0.8.8 | ||
nibabel ~= 3.0 | ||
nipype ~= 1.4 | ||
niworkflows >=1.2.0rc4,<1.3 | ||
niworkflows @ git+https://github.com/oesteban/niworkflows.git@enh/335-pybids-datasinks | ||
numpy | ||
pybids >=0.9.4 | ||
pybids >=0.10.2 | ||
pyyaml | ||
sdcflows >= 1.2.3 | ||
smriprep >=0.6.0rc4,<0.7 | ||
templateflow >= 0.4.2 | ||
sdcflows @ git+https://github.com/oesteban/sdcflows.git@enh/new-datasinks | ||
smriprep @ git+https://github.com/oesteban/smriprep.git@enh/new-datasinks | ||
templateflow >= 0.6.0 | ||
toml | ||
setup_requires = | ||
setuptools >= 40.8.0 | ||
test_requires = | ||
codecov | ||
coverage | ||
pytest | ||
packages = find: | ||
include_package_data = True | ||
|
||
[options.packages.find] | ||
exclude = | ||
*.tests | ||
|
||
[options.package_data] | ||
dmriprep = | ||
VERSION | ||
config/reports-spec.yml | ||
data/boilerplate.bib | ||
data/tests/config.toml | ||
data/tests/THP/* | ||
data/tests/THP/sub-THP0005/anat/* | ||
data/tests/THP/sub-THP0005/dwi/* | ||
|
||
[options.exclude_package_data] | ||
* = tests | ||
|
@@ -77,16 +93,6 @@ all = | |
%(popylar)s | ||
%(tests)s | ||
|
||
[options.package_data] | ||
dmriprep = | ||
VERSION | ||
config/reports-spec.yml | ||
data/boilerplate.bib | ||
data/tests/config.toml | ||
data/tests/THP/* | ||
data/tests/THP/sub-THP0005/anat/* | ||
data/tests/THP/sub-THP0005/dwi/* | ||
|
||
[options.entry_points] | ||
console_scripts = | ||
dmriprep=dmriprep.cli.run:main | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters