Adjust SPDX fields to better conform to the REUSE 3.0 spec.
Chris Pressey
1 year, 4 months ago
2 | 2 |
Files:
|
3 | 3 |
.gitignore
|
4 | 4 |
requirements.txt
|
5 | |
Copyright: This is free and unencumbered software released into the public domain.
|
|
5 |
Copyright: In 2023, Chris Pressey, the original author of this work, placed it into the public domain.
|
6 | 6 |
License: Unlicense
|
0 | 0 |
<!--
|
1 | |
SPDX-FileCopyrightText: This is free and unencumbered software released into the public domain.
|
2 | |
|
|
1 |
SPDX-FileCopyrightText: In 2023, Chris Pressey, the original author of this work, placed it into the public domain.
|
3 | 2 |
SPDX-License-Identifier: Unlicense
|
|
3 |
For more information, please refer to <https://unlicense.org/>
|
4 | 4 |
-->
|
5 | 5 |
|
6 | 6 |
Chainscape
|
0 | 0 |
#!/usr/bin/env python3
|
1 | 1 |
|
2 | |
# Originally written by Chris Pressey, Cat's Eye Technologies.
|
3 | |
#
|
4 | |
# SPDX-FileCopyrightText: This is free and unencumbered software released into the public domain.
|
5 | |
# For more information, see the file Unlicense.txt in the LICENSES directory.
|
6 | |
#
|
|
2 |
# SPDX-FileCopyrightText: In 2023, Chris Pressey, the original author of this work, placed it into the public domain.
|
7 | 3 |
# SPDX-License-Identifier: Unlicense
|
|
4 |
# For more information, please refer to <https://unlicense.org/>
|
8 | 5 |
|
9 | 6 |
"""
|
10 | 7 |
|
0 | |
# Originally written by Chris Pressey, Cat's Eye Technologies.
|
1 | |
#
|
2 | |
# SPDX-FileCopyrightText: This is free and unencumbered software released into the public domain.
|
3 | |
# For more information, see the file Unlicense.txt in the LICENSES directory.
|
4 | |
#
|
|
0 |
# SPDX-FileCopyrightText: In 2023, Chris Pressey, the original author of this work, placed it into the public domain.
|
5 | 1 |
# SPDX-License-Identifier: Unlicense
|
|
2 |
# For more information, please refer to <https://unlicense.org/>
|
6 | 3 |
|
7 | 4 |
from argparse import ArgumentParser
|
8 | 5 |
|