Skip to content

Commit

Permalink
Add SPDX-FileCopyrightText for sole author files
Browse files Browse the repository at this point in the history
  • Loading branch information
chatcannon committed Mar 20, 2021
1 parent dd9cf01 commit 4b20425
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-FileCopyrightText: 2013-2017 Christopher Kerr <[email protected]>

*.py[cod]

# C extensions
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr <[email protected]>
sudo: false
language: python
cache:
Expand Down
2 changes: 2 additions & 0 deletions galvani/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-FileCopyrightText: 2014-2019 Christopher Kerr <[email protected]>

from .BioLogic import MPRfile, MPTfile

__all__ = ['MPRfile', 'MPTfile']
2 changes: 2 additions & 0 deletions galvani/res2sqlite.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/usr/bin/python

# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr <[email protected]>

import subprocess as sp
import sqlite3
import re
Expand Down
2 changes: 2 additions & 0 deletions get_testdata.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/sh

# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr <[email protected]>

## Test data are posted on FigShare, listed in this article
# http://figshare.com/articles/galvani_test_data/1228760

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
# SPDX-FileCopyrightText: 2017 Christopher Kerr <[email protected]>
numpy
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr <[email protected]>

import os.path

Expand Down
2 changes: 2 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Helpers for pytest tests."""

# SPDX-FileCopyrightText: 2019 Christopher Kerr <[email protected]>

import os

import pytest
Expand Down
2 changes: 2 additions & 0 deletions tests/test_Arbin.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Tests for loading Arbin .res files."""

# SPDX-FileCopyrightText: 2019-2020 Christopher Kerr <[email protected]>

import os
import sqlite3
import subprocess
Expand Down
2 changes: 2 additions & 0 deletions tests/test_BioLogic.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-

# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr <[email protected]>

import os.path
import re
from datetime import datetime
Expand Down
1 change: 1 addition & 0 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr <[email protected]>
[tox]
envlist = py36,py37,py38,py39
[testenv]
Expand Down

0 comments on commit 4b20425

Please sign in to comment.