From 68f3f4cd928e7221d50bbb4f69f2ed5a9cda6a44 Mon Sep 17 00:00:00 2001 From: Paillat-dev Date: Tue, 10 Jun 2025 22:55:39 +0200 Subject: [PATCH] Add copyright and license information to source files and create .copywrite.hcl --- .copywrite.hcl | 17 +++++++++++++++++ src/__main__.py | 3 +++ tests/__init__.py | 3 +++ tests/test_esc.py | 3 +++ 4 files changed, 26 insertions(+) create mode 100644 .copywrite.hcl diff --git a/.copywrite.hcl b/.copywrite.hcl new file mode 100644 index 0000000..68d009a --- /dev/null +++ b/.copywrite.hcl @@ -0,0 +1,17 @@ +schema_version = 1 + +project { + license = "MIT" + copyright_year = 2025 + copyright_holder = "Paillat-dev" + header_ignore = [ + ".venv/**", + "logs/**", + ".idea/**", + ".git/**", + ".vscode/**", + "__pycache__/**", + "*.pyc", + "src/dismoji/raw/**", + ] +} diff --git a/src/__main__.py b/src/__main__.py index 9166b4e..4e1cd85 100644 --- a/src/__main__.py +++ b/src/__main__.py @@ -1,3 +1,6 @@ +# Copyright (c) Paillat-dev +# SPDX-License-Identifier: MIT + import time from pathlib import Path diff --git a/tests/__init__.py b/tests/__init__.py index e69de29..2d29390 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -0,0 +1,3 @@ +# Copyright (c) Paillat-dev +# SPDX-License-Identifier: MIT + diff --git a/tests/test_esc.py b/tests/test_esc.py index 610db69..c010d71 100644 --- a/tests/test_esc.py +++ b/tests/test_esc.py @@ -1,3 +1,6 @@ +# Copyright (c) Paillat-dev +# SPDX-License-Identifier: MIT + import os import sys