From 4b2042501d80616d59289dc5c53c83efa5722854 Mon Sep 17 00:00:00 2001 From: Chris Kerr Date: Sat, 20 Mar 2021 15:26:40 +0200 Subject: [PATCH] Add SPDX-FileCopyrightText for sole author files --- .gitignore | 2 ++ .travis.yml | 1 + galvani/__init__.py | 2 ++ galvani/res2sqlite.py | 2 ++ get_testdata.sh | 2 ++ requirements.txt | 1 + setup.py | 1 + tests/conftest.py | 2 ++ tests/test_Arbin.py | 2 ++ tests/test_BioLogic.py | 2 ++ tox.ini | 1 + 11 files changed, 18 insertions(+) diff --git a/.gitignore b/.gitignore index 79e6952..d6d7a97 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2013-2017 Christopher Kerr + *.py[cod] # C extensions diff --git a/.travis.yml b/.travis.yml index 3553fe1..43d6db5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr sudo: false language: python cache: diff --git a/galvani/__init__.py b/galvani/__init__.py index ce98e1d..f316dfc 100644 --- a/galvani/__init__.py +++ b/galvani/__init__.py @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2014-2019 Christopher Kerr + from .BioLogic import MPRfile, MPTfile __all__ = ['MPRfile', 'MPTfile'] diff --git a/galvani/res2sqlite.py b/galvani/res2sqlite.py index 4ac4739..e6651b7 100755 --- a/galvani/res2sqlite.py +++ b/galvani/res2sqlite.py @@ -1,5 +1,7 @@ #!/usr/bin/python +# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr + import subprocess as sp import sqlite3 import re diff --git a/get_testdata.sh b/get_testdata.sh index 9c82f97..2cd29dd 100755 --- a/get_testdata.sh +++ b/get_testdata.sh @@ -1,5 +1,7 @@ #!/bin/sh +# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr + ## Test data are posted on FigShare, listed in this article # http://figshare.com/articles/galvani_test_data/1228760 diff --git a/requirements.txt b/requirements.txt index 24ce15a..c52b71f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1,2 @@ +# SPDX-FileCopyrightText: 2017 Christopher Kerr numpy diff --git a/setup.py b/setup.py index 83a61cb..c4f953f 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr import os.path diff --git a/tests/conftest.py b/tests/conftest.py index 1d2e5ad..f4e6ea6 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,7 @@ """Helpers for pytest tests.""" +# SPDX-FileCopyrightText: 2019 Christopher Kerr + import os import pytest diff --git a/tests/test_Arbin.py b/tests/test_Arbin.py index 8d0e937..44ed8b3 100644 --- a/tests/test_Arbin.py +++ b/tests/test_Arbin.py @@ -1,5 +1,7 @@ """Tests for loading Arbin .res files.""" +# SPDX-FileCopyrightText: 2019-2020 Christopher Kerr + import os import sqlite3 import subprocess diff --git a/tests/test_BioLogic.py b/tests/test_BioLogic.py index 4ee5f94..22c9d9c 100644 --- a/tests/test_BioLogic.py +++ b/tests/test_BioLogic.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr + import os.path import re from datetime import datetime diff --git a/tox.ini b/tox.ini index f31b6cb..a948eb9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,3 +1,4 @@ +# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr [tox] envlist = py36,py37,py38,py39 [testenv]