mirror of
https://github.com/echemdata/galvani.git
synced 2025-12-14 01:15:34 +00:00
Add GPLv3+ License-Identifier to remaining files
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
sudo: false
|
sudo: false
|
||||||
language: python
|
language: python
|
||||||
cache:
|
cache:
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ galvani
|
|||||||
|
|
||||||
<!---
|
<!---
|
||||||
SPDX-FileCopyrightText: 2013-2020 Christopher Kerr, Peter Attia
|
SPDX-FileCopyrightText: 2013-2020 Christopher Kerr, Peter Attia
|
||||||
|
|
||||||
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
-->
|
-->
|
||||||
|
|
||||||
Read proprietary file formats from electrochemical test stations
|
Read proprietary file formats from electrochemical test stations
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
"""Code to read in data files from Bio-Logic instruments"""
|
"""Code to read in data files from Bio-Logic instruments"""
|
||||||
|
|
||||||
# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr, "bcolsen"
|
# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr, "bcolsen"
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
__all__ = ['MPTfileCSV', 'MPTfile']
|
__all__ = ['MPTfileCSV', 'MPTfile']
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
# SPDX-FileCopyrightText: 2014-2019 Christopher Kerr <chris.kerr@mykolab.ch>
|
# SPDX-FileCopyrightText: 2014-2019 Christopher Kerr <chris.kerr@mykolab.ch>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
from .BioLogic import MPRfile, MPTfile
|
from .BioLogic import MPRfile, MPTfile
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import subprocess as sp
|
import subprocess as sp
|
||||||
import sqlite3
|
import sqlite3
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
## Test data are posted on FigShare, listed in this article
|
## Test data are posted on FigShare, listed in this article
|
||||||
# http://figshare.com/articles/galvani_test_data/1228760
|
# http://figshare.com/articles/galvani_test_data/1228760
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -1,5 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
# SPDX-FileCopyrightText: 2014-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import os.path
|
import os.path
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
"""Helpers for pytest tests."""
|
"""Helpers for pytest tests."""
|
||||||
|
|
||||||
# SPDX-FileCopyrightText: 2019 Christopher Kerr <chris.kerr@mykolab.ch>
|
# SPDX-FileCopyrightText: 2019 Christopher Kerr <chris.kerr@mykolab.ch>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
"""Tests for loading Arbin .res files."""
|
"""Tests for loading Arbin .res files."""
|
||||||
|
|
||||||
# SPDX-FileCopyrightText: 2019-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
# SPDX-FileCopyrightText: 2019-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sqlite3
|
import sqlite3
|
||||||
|
|||||||
@@ -1,6 +1,8 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
# SPDX-FileCopyrightText: 2013-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
import os.path
|
import os.path
|
||||||
import re
|
import re
|
||||||
|
|||||||
1
tox.ini
1
tox.ini
@@ -1,4 +1,5 @@
|
|||||||
# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
# SPDX-FileCopyrightText: 2017-2020 Christopher Kerr <chris.kerr@mykolab.ch>
|
||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
[tox]
|
[tox]
|
||||||
envlist = py36,py37,py38,py39
|
envlist = py36,py37,py38,py39
|
||||||
[testenv]
|
[testenv]
|
||||||
|
|||||||
Reference in New Issue
Block a user