diff --git a/Dockerfile b/Dockerfile index 3f37fb086..3dbe4c165 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # # MIT License # -# Copyright (c) 2023 The NiPreps Developers +# Copyright (c) The NiPreps Developers # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal diff --git a/LICENSE b/LICENSE index 8efda5222..b0816756c 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2020 The NiPreps Developers + Copyright The NiPreps Developers Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.rst b/README.rst index 8f1e6c4c6..2a5f772c5 100644 --- a/README.rst +++ b/README.rst @@ -146,7 +146,7 @@ of the *NiPreps framework*. License ~~~~~~~ -Copyright (c) 2023, the *NiPreps* Developers. +Copyright (c) the *NiPreps* Developers. As of the 21.0.x pre-release and release series, *fMRIPrep* is licensed under the Apache License, Version 2.0 (the "License"); diff --git a/fmriprep/__about__.py b/fmriprep/__about__.py deleted file mode 100644 index a8ce6b4f4..000000000 --- a/fmriprep/__about__.py +++ /dev/null @@ -1,38 +0,0 @@ -# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- -# vi: set ft=python sts=4 ts=4 sw=4 et: -# -# Copyright 2023 The NiPreps Developers -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -# We support and encourage derived works from this project, please read -# about our expectations at -# -# https://www.nipreps.org/community/licensing/ -# -"""Base module variables.""" - -try: - from ._version import __version__ -except ImportError: - __version__ = '0+unknown' - -__packagename__ = 'fmriprep' -__copyright__ = 'Copyright 2023, The NiPreps Developers' -__credits__ = ( - 'Contributors: please check the ``.zenodo.json`` file at the top-level folder' - 'of the repository' -) -__url__ = 'https://github.com/nipreps/fmriprep' - -DOWNLOAD_URL = f'https://github.com/nipreps/{__packagename__}/archive/{__version__}.tar.gz' diff --git a/fmriprep/__init__.py b/fmriprep/__init__.py index f1dc0e1c3..2afc7fea2 100644 --- a/fmriprep/__init__.py +++ b/fmriprep/__init__.py @@ -1,25 +1,28 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: +# +# Copyright The NiPreps Developers +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# We support and encourage derived works from this project, please read +# about our expectations at +# +# https://www.nipreps.org/community/licensing/ +# """Top-module metadata.""" -from .__about__ import __copyright__, __credits__, __packagename__, __version__ - -__all__ = [ - '__copyright__', - '__credits__', - '__packagename__', - '__version__', -] - -# Silence PyBIDS warning for extension entity behavior -# Can be removed once minimum PyBIDS dependency hits 0.14 try: - import bids - from packaging.version import Version - - if Version(bids.__version__) < Version('0.14'): - bids.config.set_option('extension_initial_dot', True) -except (ImportError, ValueError): - pass -else: - del Version, bids + from ._version import __version__ +except ImportError: + __version__ = '0+unknown' diff --git a/fmriprep/__main__.py b/fmriprep/__main__.py index 2dde8a48b..d670f3ca7 100644 --- a/fmriprep/__main__.py +++ b/fmriprep/__main__.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/_warnings.py b/fmriprep/_warnings.py index 70a32cc7e..d5513fa1e 100644 --- a/fmriprep/_warnings.py +++ b/fmriprep/_warnings.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/cli/parser.py b/fmriprep/cli/parser.py index 822815ffb..2ee2e815a 100644 --- a/fmriprep/cli/parser.py +++ b/fmriprep/cli/parser.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/cli/run.py b/fmriprep/cli/run.py index d095440fe..cbde81ee4 100644 --- a/fmriprep/cli/run.py +++ b/fmriprep/cli/run.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/cli/tests/test_parser.py b/fmriprep/cli/tests/test_parser.py index f27d4e14b..997e8ed59 100644 --- a/fmriprep/cli/tests/test_parser.py +++ b/fmriprep/cli/tests/test_parser.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/cli/tests/test_version.py b/fmriprep/cli/tests/test_version.py index 753dd9ea8..2cdc50de6 100644 --- a/fmriprep/cli/tests/test_version.py +++ b/fmriprep/cli/tests/test_version.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/cli/version.py b/fmriprep/cli/version.py index 89f1a3511..0b6ae837c 100644 --- a/fmriprep/cli/version.py +++ b/fmriprep/cli/version.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/cli/workflow.py b/fmriprep/cli/workflow.py index 903ce6127..89310590b 100644 --- a/fmriprep/cli/workflow.py +++ b/fmriprep/cli/workflow.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/config.py b/fmriprep/config.py index 96deb1046..e6d9ffd15 100644 --- a/fmriprep/config.py +++ b/fmriprep/config.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/interfaces/confounds.py b/fmriprep/interfaces/confounds.py index 299a99286..d796d1061 100644 --- a/fmriprep/interfaces/confounds.py +++ b/fmriprep/interfaces/confounds.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/interfaces/multiecho.py b/fmriprep/interfaces/multiecho.py index ab03ffe25..7225926cb 100644 --- a/fmriprep/interfaces/multiecho.py +++ b/fmriprep/interfaces/multiecho.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/interfaces/patches.py b/fmriprep/interfaces/patches.py index eced9639d..ae602c99e 100644 --- a/fmriprep/interfaces/patches.py +++ b/fmriprep/interfaces/patches.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/interfaces/reports.py b/fmriprep/interfaces/reports.py index d5d5b4573..307a70ee3 100644 --- a/fmriprep/interfaces/reports.py +++ b/fmriprep/interfaces/reports.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/interfaces/tests/test_reports.py b/fmriprep/interfaces/tests/test_reports.py index ff411e544..87aebe910 100644 --- a/fmriprep/interfaces/tests/test_reports.py +++ b/fmriprep/interfaces/tests/test_reports.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/reports/core.py b/fmriprep/reports/core.py index 5fa590284..33fb92f7e 100644 --- a/fmriprep/reports/core.py +++ b/fmriprep/reports/core.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/tests/test_config.py b/fmriprep/tests/test_config.py index 2a6b8dadd..c2ea345ce 100644 --- a/fmriprep/tests/test_config.py +++ b/fmriprep/tests/test_config.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/utils/bids.py b/fmriprep/utils/bids.py index 700f30def..dd399feba 100644 --- a/fmriprep/utils/bids.py +++ b/fmriprep/utils/bids.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -97,7 +97,9 @@ def write_bidsignore(deriv_dir): def write_derivative_description(bids_dir, deriv_dir): - from ..__about__ import DOWNLOAD_URL, __version__ + from .. import __version__ + + DOWNLOAD_URL = f'https://github.com/nipreps/fmriprep/archive/{__version__}.tar.gz' bids_dir = Path(bids_dir) deriv_dir = Path(deriv_dir) diff --git a/fmriprep/utils/confounds.py b/fmriprep/utils/confounds.py index 38e15f80a..b967b14b3 100644 --- a/fmriprep/utils/confounds.py +++ b/fmriprep/utils/confounds.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/utils/debug.py b/fmriprep/utils/debug.py index befda6b88..a516a5dbc 100644 --- a/fmriprep/utils/debug.py +++ b/fmriprep/utils/debug.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2021 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -27,7 +27,7 @@ # # ORIGINAL WORK'S ATTRIBUTION NOTICE: # -# Copyright 2020 DANDI Client Developers +# Copyright DANDI Client Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/utils/meepi.py b/fmriprep/utils/meepi.py index e73ca4fb2..5b782f311 100644 --- a/fmriprep/utils/meepi.py +++ b/fmriprep/utils/meepi.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/utils/misc.py b/fmriprep/utils/misc.py index 6f7973913..571d7802c 100644 --- a/fmriprep/utils/misc.py +++ b/fmriprep/utils/misc.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/utils/telemetry.py b/fmriprep/utils/telemetry.py index c95067a68..a0b129e5f 100644 --- a/fmriprep/utils/telemetry.py +++ b/fmriprep/utils/telemetry.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/base.py b/fmriprep/workflows/base.py index 6883bbf14..e398d0fb4 100644 --- a/fmriprep/workflows/base.py +++ b/fmriprep/workflows/base.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/base.py b/fmriprep/workflows/bold/base.py index 3344e734b..b5e97e8bb 100644 --- a/fmriprep/workflows/bold/base.py +++ b/fmriprep/workflows/bold/base.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/confounds.py b/fmriprep/workflows/bold/confounds.py index f16904633..1b43ec092 100644 --- a/fmriprep/workflows/bold/confounds.py +++ b/fmriprep/workflows/bold/confounds.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/fit.py b/fmriprep/workflows/bold/fit.py index 7fd0a9fbd..c5013c9db 100644 --- a/fmriprep/workflows/bold/fit.py +++ b/fmriprep/workflows/bold/fit.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/hmc.py b/fmriprep/workflows/bold/hmc.py index 9fd4d6c20..35cd4a1fc 100644 --- a/fmriprep/workflows/bold/hmc.py +++ b/fmriprep/workflows/bold/hmc.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/outputs.py b/fmriprep/workflows/bold/outputs.py index 094484156..82f021dfb 100644 --- a/fmriprep/workflows/bold/outputs.py +++ b/fmriprep/workflows/bold/outputs.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/reference.py b/fmriprep/workflows/bold/reference.py index 5e8873e0d..68d53e935 100644 --- a/fmriprep/workflows/bold/reference.py +++ b/fmriprep/workflows/bold/reference.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2021 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/registration.py b/fmriprep/workflows/bold/registration.py index c08a4fa94..c0aab24e6 100644 --- a/fmriprep/workflows/bold/registration.py +++ b/fmriprep/workflows/bold/registration.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/resampling.py b/fmriprep/workflows/bold/resampling.py index b5f13ee0b..bbd4ac319 100644 --- a/fmriprep/workflows/bold/resampling.py +++ b/fmriprep/workflows/bold/resampling.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/stc.py b/fmriprep/workflows/bold/stc.py index 0a820c184..f46e87ead 100644 --- a/fmriprep/workflows/bold/stc.py +++ b/fmriprep/workflows/bold/stc.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/bold/t2s.py b/fmriprep/workflows/bold/t2s.py index 313593a79..5e22b4272 100644 --- a/fmriprep/workflows/bold/t2s.py +++ b/fmriprep/workflows/bold/t2s.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/fmriprep/workflows/tests/__init__.py b/fmriprep/workflows/tests/__init__.py index e6c33399e..e7268ae24 100644 --- a/fmriprep/workflows/tests/__init__.py +++ b/fmriprep/workflows/tests/__init__.py @@ -1,7 +1,7 @@ # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- # vi: set ft=python sts=4 ts=4 sw=4 et: # -# Copyright 2023 The NiPreps Developers +# Copyright The NiPreps Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/long_description.rst b/long_description.rst index 09856fcec..1d58275c5 100644 --- a/long_description.rst +++ b/long_description.rst @@ -54,7 +54,7 @@ of the *NiPreps framework*. License ~~~~~~~ -Copyright (c) 2023, the *NiPreps* Developers. +Copyright (c) the *NiPreps* Developers. As of the 21.0.x pre-release and release series, *fMRIPrep* is licensed under the Apache License, Version 2.0 (the "License"); diff --git a/wrapper/LICENSE b/wrapper/LICENSE index c4b76865d..508d7731d 100644 --- a/wrapper/LICENSE +++ b/wrapper/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015-2023, the Nipreps developers. +Copyright (c) the Nipreps developers. All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/wrapper/src/fmriprep_docker/__main__.py b/wrapper/src/fmriprep_docker/__main__.py index 44d6e1a3b..b295eb589 100755 --- a/wrapper/src/fmriprep_docker/__main__.py +++ b/wrapper/src/fmriprep_docker/__main__.py @@ -25,16 +25,6 @@ except ImportError: __version__ = '0+unknown' -__copyright__ = 'Copyright 2023, Center for Reproducible Neuroscience, Stanford University' -__credits__ = [ - 'Craig Moodie', - 'Ross Blair', - 'Oscar Esteban', - 'Chris Gorgolewski', - 'Shoshana Berleant', - 'Christopher J. Markiewicz', - 'Russell A. Poldrack', -] __bugreports__ = 'https://github.com/nipreps/fmriprep/issues'