summaryrefslogtreecommitdiff
path: root/lib/stitch_plan
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2021-03-11 23:17:19 -0500
committerLex Neva <github.com@lexneva.name>2021-03-11 23:17:19 -0500
commit3b3f890c1256bd7da89da33cc2547d7e8123979c (patch)
tree56ed4104b3c18eaac802e0ba151264ea232b0a6a /lib/stitch_plan
parent3dd767917d8e604bf4a1f3b41c5c4fc506fa2b96 (diff)
add copyright headers
Diffstat (limited to 'lib/stitch_plan')
-rw-r--r--lib/stitch_plan/__init__.py5
-rw-r--r--lib/stitch_plan/read_file.py5
-rw-r--r--lib/stitch_plan/stitch.py5
-rw-r--r--lib/stitch_plan/stitch_plan.py5
-rw-r--r--lib/stitch_plan/ties.py5
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 ccbea12e..a5938c7b 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 de66cb10..47e8b203 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 5acf16e6..d54b0f0f 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