From 3b3f890c1256bd7da89da33cc2547d7e8123979c Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 11 Mar 2021 23:17:19 -0500 Subject: add copyright headers --- lib/stitches/__init__.py | 5 +++++ lib/stitches/auto_fill.py | 5 +++++ lib/stitches/auto_satin.py | 5 +++++ lib/stitches/fill.py | 5 +++++ lib/stitches/running_stitch.py | 5 +++++ 5 files changed, 25 insertions(+) (limited to 'lib/stitches') diff --git a/lib/stitches/__init__.py b/lib/stitches/__init__.py index 12c636a6..4de88733 100644 --- a/lib/stitches/__init__.py +++ b/lib/stitches/__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 .auto_fill import auto_fill from .fill import legacy_fill from .running_stitch import * diff --git a/lib/stitches/auto_fill.py b/lib/stitches/auto_fill.py index 485f51e5..07361f13 100644 --- a/lib/stitches/auto_fill.py +++ b/lib/stitches/auto_fill.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. + # -*- coding: UTF-8 -*- import math diff --git a/lib/stitches/auto_satin.py b/lib/stitches/auto_satin.py index 5ce91a49..795df036 100644 --- a/lib/stitches/auto_satin.py +++ b/lib/stitches/auto_satin.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 math from itertools import chain diff --git a/lib/stitches/fill.py b/lib/stitches/fill.py index a19e080b..5aead9c7 100644 --- a/lib/stitches/fill.py +++ b/lib/stitches/fill.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 math import shapely diff --git a/lib/stitches/running_stitch.py b/lib/stitches/running_stitch.py index 57a03865..2878480c 100644 --- a/lib/stitches/running_stitch.py +++ b/lib/stitches/running_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 copy import copy """ Utility functions to produce running stitches. """ -- cgit v1.2.3