diff options
| author | Lex Neva <lexelby@users.noreply.github.com> | 2021-03-28 18:11:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-28 18:11:15 -0400 |
| commit | f787121080255abfb2f4ffc94d7d572a09e3ba61 (patch) | |
| tree | 3bebe0e190250c4b74d8ca3901f66d78a8907467 /lib/inx | |
| parent | 399a2a8cc8c29ece566fdc6b0ddb4ec1a5d6a9b9 (diff) | |
| parent | 90a59769dd8d4de7b66c3e943e5271329980dab1 (diff) | |
Merge pull request #1083 from inkstitch/lexelby/license-headers
add license headers
Diffstat (limited to 'lib/inx')
| -rw-r--r-- | lib/inx/__init__.py | 5 | ||||
| -rwxr-xr-x | lib/inx/about.py | 5 | ||||
| -rwxr-xr-x | lib/inx/extensions.py | 5 | ||||
| -rw-r--r-- | lib/inx/generate.py | 5 | ||||
| -rwxr-xr-x | lib/inx/info.py | 5 | ||||
| -rwxr-xr-x | lib/inx/inputs.py | 5 | ||||
| -rw-r--r-- | lib/inx/outputs.py | 5 | ||||
| -rw-r--r-- | lib/inx/utils.py | 5 |
8 files changed, 40 insertions, 0 deletions
diff --git a/lib/inx/__init__.py b/lib/inx/__init__.py index cc2b039d..6d4846f2 100644 --- a/lib/inx/__init__.py +++ b/lib/inx/__init__.py @@ -1 +1,6 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + from .generate import generate_inx_files diff --git a/lib/inx/about.py b/lib/inx/about.py index 6db13865..c1ce458f 100755 --- a/lib/inx/about.py +++ b/lib/inx/about.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + from .utils import build_environment, write_inx_file diff --git a/lib/inx/extensions.py b/lib/inx/extensions.py index 379e98cd..9a197c5d 100755 --- a/lib/inx/extensions.py +++ b/lib/inx/extensions.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + import pyembroidery from ..commands import (COMMANDS, GLOBAL_COMMANDS, LAYER_COMMANDS, diff --git a/lib/inx/generate.py b/lib/inx/generate.py index 8a5b9569..cfcb224e 100644 --- a/lib/inx/generate.py +++ b/lib/inx/generate.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + from .info import generate_info_inx_files from .extensions import generate_extension_inx_files from .inputs import generate_input_inx_files diff --git a/lib/inx/info.py b/lib/inx/info.py index f391b546..3a69adad 100755 --- a/lib/inx/info.py +++ b/lib/inx/info.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + from .utils import build_environment, write_inx_file diff --git a/lib/inx/inputs.py b/lib/inx/inputs.py index b50ec9f9..2cf84df9 100755 --- a/lib/inx/inputs.py +++ b/lib/inx/inputs.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + import pyembroidery from .utils import build_environment, write_inx_file diff --git a/lib/inx/outputs.py b/lib/inx/outputs.py index ccb323c7..1ac1daf8 100644 --- a/lib/inx/outputs.py +++ b/lib/inx/outputs.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + import pyembroidery from .utils import build_environment, write_inx_file diff --git a/lib/inx/utils.py b/lib/inx/utils.py index 2fb6b21b..4a62c507 100644 --- a/lib/inx/utils.py +++ b/lib/inx/utils.py @@ -1,3 +1,8 @@ +# Authors: see git history +# +# Copyright (c) 2010 Authors +# Licensed under the GNU GPL version 3.0 or later. See the file LICENSE for details. + import errno import gettext import os |
