Skip to content

Commit e3d45d5

Browse files
authored
clarify licensing (#62)
1 parent 7da18a1 commit e3d45d5

File tree

9 files changed

+217
-674
lines changed

9 files changed

+217
-674
lines changed

LICENSE

Lines changed: 202 additions & 674 deletions
Large diffs are not rendered by default.

cwl_utils/cite_extract.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: GPL-3.0-only
23
import sys
34
from typing import Iterator, Union, cast
45

cwl_utils/cwl_expression_refactor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: Apache-2.0
3+
# Copyright 2018-2021 Michael R. Crusoe
24
"""CWL Expression refactoring tool for CWL."""
35
import argparse
46
import logging

cwl_utils/cwl_v1_0_expression_refactor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: Apache-2.0
3+
# Copyright 2018-2021 Michael R. Crusoe
24
"""CWL Expression refactoring tool for CWL v1.0 ."""
35
import copy
46
import hashlib

cwl_utils/cwl_v1_1_expression_refactor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: Apache-2.0
3+
# Copyright 2018-2021 Michael R. Crusoe
24
"""CWL Expression refactoring tool for CWL v1.1 ."""
35
import copy
46
import hashlib

cwl_utils/cwl_v1_2_expression_refactor.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: Apache-2.0
3+
# Copyright 2018-2021 Michael R. Crusoe
24
"""CWL Expression refactoring tool for CWL v1.2 ."""
35
import copy
46
import hashlib

cwl_utils/docker_extract.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: GPL-3.0-only
23
import argparse
34
import os
45
import sys

cwl_utils/graph_split.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env python
2+
# SPDX-License-Identifier: GPL-3.0-only
3+
# Copyright 2019-2020 Michael R. Crusoe
4+
# Copyright 2020 Altair Wei
25
"""
36
Unpacks the result of `cwltool --unpack`.
47

cwl_utils/image_puller.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: GPL-3.0-only
2+
"""Classes for docker-extract."""
13
import logging
24
import os
35
import subprocess

0 commit comments

Comments
 (0)