diff options
| author | Lex Neva <github.com@lexneva.name> | 2021-03-11 23:17:19 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2021-03-11 23:17:19 -0500 |
| commit | 3b3f890c1256bd7da89da33cc2547d7e8123979c (patch) | |
| tree | 56ed4104b3c18eaac802e0ba151264ea232b0a6a /lib/stitches | |
| parent | 3dd767917d8e604bf4a1f3b41c5c4fc506fa2b96 (diff) | |
add copyright headers
Diffstat (limited to 'lib/stitches')
| -rw-r--r-- | lib/stitches/__init__.py | 5 | ||||
| -rw-r--r-- | lib/stitches/auto_fill.py | 5 | ||||
| -rw-r--r-- | lib/stitches/auto_satin.py | 5 | ||||
| -rw-r--r-- | lib/stitches/fill.py | 5 | ||||
| -rw-r--r-- | lib/stitches/running_stitch.py | 5 |
5 files changed, 25 insertions, 0 deletions
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. """ |
