-
Notifications
You must be signed in to change notification settings - Fork 298
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2018 from oesteban/maint/config-file
ENH: Config module to replace long list of downstreamed arguments
- Loading branch information
Showing
41 changed files
with
1,840 additions
and
1,640 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
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,26 +1,17 @@ | ||
#!/usr/bin/env python | ||
# -*- coding: utf-8 -*- | ||
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- | ||
# vi: set ft=python sts=4 ts=4 sw=4 et: | ||
""" | ||
This pipeline is developed by the Poldrack lab at Stanford University | ||
(https://poldracklab.stanford.edu/) for use at | ||
the Center for Reproducible Neuroscience (http://reproducibility.stanford.edu/), | ||
as well as for open-source software distribution. | ||
""" | ||
"""Top-module metadata.""" | ||
|
||
from .__about__ import ( # noqa | ||
__version__, | ||
from .__about__ import ( | ||
__copyright__, | ||
__credits__, | ||
__packagename__, | ||
__version__, | ||
) | ||
|
||
import warnings | ||
|
||
# cmp is not used by fmriprep, so ignore nipype-generated warnings | ||
warnings.filterwarnings('ignore', r'cmp not installed') | ||
warnings.filterwarnings('ignore', r'This has not been fully tested. Please report any failures.') | ||
warnings.filterwarnings('ignore', r"can't resolve package from __spec__ or __package__") | ||
warnings.simplefilter('ignore', DeprecationWarning) | ||
warnings.simplefilter('ignore', ResourceWarning) | ||
__all__ = [ | ||
'__copyright__', | ||
'__credits__', | ||
'__packagename__', | ||
'__version__', | ||
] |
Oops, something went wrong.