diff --git a/.travis.yml b/.travis.yml index 43d6db5..b5b9ef3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ # SPDX-FileCopyrightText: 2017-2020 Christopher Kerr +# SPDX-License-Identifier: GPL-3.0-or-later sudo: false language: python cache: diff --git a/README.md b/README.md index 00d9a9a..98fabab 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ galvani Read proprietary file formats from electrochemical test stations diff --git a/galvani/BioLogic.py b/galvani/BioLogic.py index cdfa362..a3786c0 100644 --- a/galvani/BioLogic.py +++ b/galvani/BioLogic.py @@ -2,6 +2,8 @@ """Code to read in data files from Bio-Logic instruments""" # SPDX-FileCopyrightText: 2013-2020 Christopher Kerr, "bcolsen" +# +# SPDX-License-Identifier: GPL-3.0-or-later __all__ = ['MPTfileCSV', 'MPTfile'] diff --git a/galvani/__init__.py b/galvani/__init__.py index f316dfc..e3445f3 100644 --- a/galvani/__init__.py +++ b/galvani/__init__.py @@ -1,4 +1,6 @@ # SPDX-FileCopyrightText: 2014-2019 Christopher Kerr +# +# SPDX-License-Identifier: GPL-3.0-or-later from .BioLogic import MPRfile, MPTfile diff --git a/galvani/res2sqlite.py b/galvani/res2sqlite.py index e6651b7..bd2da06 100755 --- a/galvani/res2sqlite.py +++ b/galvani/res2sqlite.py @@ -1,6 +1,8 @@ #!/usr/bin/python # SPDX-FileCopyrightText: 2013-2020 Christopher Kerr +# +# SPDX-License-Identifier: GPL-3.0-or-later import subprocess as sp import sqlite3 diff --git a/get_testdata.sh b/get_testdata.sh index 2cd29dd..1017e52 100755 --- a/get_testdata.sh +++ b/get_testdata.sh @@ -1,6 +1,8 @@ #!/bin/sh # SPDX-FileCopyrightText: 2014-2020 Christopher Kerr +# +# SPDX-License-Identifier: GPL-3.0-or-later ## Test data are posted on FigShare, listed in this article # http://figshare.com/articles/galvani_test_data/1228760 diff --git a/setup.py b/setup.py index c4f953f..7eb1cb6 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- # SPDX-FileCopyrightText: 2014-2020 Christopher Kerr +# +# SPDX-License-Identifier: GPL-3.0-or-later import os.path diff --git a/tests/conftest.py b/tests/conftest.py index f4e6ea6..95a8a47 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,8 @@ """Helpers for pytest tests.""" # SPDX-FileCopyrightText: 2019 Christopher Kerr +# +# SPDX-License-Identifier: GPL-3.0-or-later import os diff --git a/tests/test_Arbin.py b/tests/test_Arbin.py index 44ed8b3..2286b2d 100644 --- a/tests/test_Arbin.py +++ b/tests/test_Arbin.py @@ -1,6 +1,8 @@ """Tests for loading Arbin .res files.""" # SPDX-FileCopyrightText: 2019-2020 Christopher Kerr +# +# SPDX-License-Identifier: GPL-3.0-or-later import os import sqlite3 diff --git a/tests/test_BioLogic.py b/tests/test_BioLogic.py index 22c9d9c..76e65e8 100644 --- a/tests/test_BioLogic.py +++ b/tests/test_BioLogic.py @@ -1,6 +1,8 @@ # -*- coding: utf-8 -*- # SPDX-FileCopyrightText: 2013-2020 Christopher Kerr +# +# SPDX-License-Identifier: GPL-3.0-or-later import os.path import re diff --git a/tox.ini b/tox.ini index a948eb9..9f6b002 100644 --- a/tox.ini +++ b/tox.ini @@ -1,4 +1,5 @@ # SPDX-FileCopyrightText: 2017-2020 Christopher Kerr +# SPDX-License-Identifier: GPL-3.0-or-later [tox] envlist = py36,py37,py38,py39 [testenv]