Add SPDX-FileCopyrightText for sole author files

This commit is contained in:
2021-03-20 15:26:40 +02:00
parent dd9cf01396
commit 4b2042501d
11 changed files with 18 additions and 0 deletions

2
.gitignore vendored
View File

@@ -1,3 +1,5 @@
# SPDX-FileCopyrightText: 2013-2017 Christopher Kerr <chris.kerr@mykolab.ch>
*.py[cod]
# C extensions

View File

@@ -1,3 +1,4 @@
# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr <chris.kerr@mykolab.ch>
sudo: false
language: python
cache:

View File

@@ -1,3 +1,5 @@
# SPDX-FileCopyrightText: 2014-2019 Christopher Kerr <chris.kerr@mykolab.ch>
from .BioLogic import MPRfile, MPTfile
__all__ = ['MPRfile', 'MPTfile']

View File

@@ -1,5 +1,7 @@
#!/usr/bin/python
# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr <chris.kerr@mykolab.ch>
import subprocess as sp
import sqlite3
import re

View File

@@ -1,5 +1,7 @@
#!/bin/sh
# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr <chris.kerr@mykolab.ch>
## Test data are posted on FigShare, listed in this article
# http://figshare.com/articles/galvani_test_data/1228760

View File

@@ -1 +1,2 @@
# SPDX-FileCopyrightText: 2017 Christopher Kerr <chris.kerr@mykolab.ch>
numpy

View File

@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr <chris.kerr@mykolab.ch>
import os.path

View File

@@ -1,5 +1,7 @@
"""Helpers for pytest tests."""
# SPDX-FileCopyrightText: 2019 Christopher Kerr <chris.kerr@mykolab.ch>
import os
import pytest

View File

@@ -1,5 +1,7 @@
"""Tests for loading Arbin .res files."""
# SPDX-FileCopyrightText: 2019-2020 Christopher Kerr <chris.kerr@mykolab.ch>
import os
import sqlite3
import subprocess

View File

@@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr <chris.kerr@mykolab.ch>
import os.path
import re
from datetime import datetime

View File

@@ -1,3 +1,4 @@
# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr <chris.kerr@mykolab.ch>
[tox]
envlist = py36,py37,py38,py39
[testenv]