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/stitch_plan | |
| parent | 399a2a8cc8c29ece566fdc6b0ddb4ec1a5d6a9b9 (diff) | |
| parent | 90a59769dd8d4de7b66c3e943e5271329980dab1 (diff) | |
Merge pull request #1083 from inkstitch/lexelby/license-headers
add license headers
Diffstat (limited to 'lib/stitch_plan')
| -rw-r--r-- | lib/stitch_plan/__init__.py | 5 | ||||
| -rw-r--r-- | lib/stitch_plan/read_file.py | 5 | ||||
| -rw-r--r-- | lib/stitch_plan/stitch.py | 5 | ||||
| -rw-r--r-- | lib/stitch_plan/stitch_plan.py | 5 | ||||
| -rw-r--r-- | lib/stitch_plan/ties.py | 5 |
5 files changed, 25 insertions, 0 deletions
diff --git a/lib/stitch_plan/__init__.py b/lib/stitch_plan/__init__.py index 2aaa0ab9..68301e94 100644 --- a/lib/stitch_plan/__init__.py +++ b/lib/stitch_plan/__init__.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 .stitch_plan import patches_to_stitch_plan, StitchPlan, ColorBlock from .stitch import Stitch from .read_file import stitch_plan_from_file diff --git a/lib/stitch_plan/read_file.py b/lib/stitch_plan/read_file.py index ff5a68ac..56567f36 100644 --- a/lib/stitch_plan/read_file.py +++ b/lib/stitch_plan/read_file.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 .stitch_plan import StitchPlan diff --git a/lib/stitch_plan/stitch.py b/lib/stitch_plan/stitch.py index 6e1e4090..ae6fa480 100644 --- a/lib/stitch_plan/stitch.py +++ b/lib/stitch_plan/stitch.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.geometry import Point diff --git a/lib/stitch_plan/stitch_plan.py b/lib/stitch_plan/stitch_plan.py index f3827f54..01463aba 100644 --- a/lib/stitch_plan/stitch_plan.py +++ b/lib/stitch_plan/stitch_plan.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 ..svg import PIXELS_PER_MM from ..threads import ThreadColor from ..utils.geometry import Point diff --git a/lib/stitch_plan/ties.py b/lib/stitch_plan/ties.py index fda12f9a..c649ee44 100644 --- a/lib/stitch_plan/ties.py +++ b/lib/stitch_plan/ties.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 copy import deepcopy from .stitch import Stitch |
