summaryrefslogtreecommitdiff
path: root/lib/lettering
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lettering')
-rw-r--r--lib/lettering/__init__.py5
-rw-r--r--lib/lettering/font.py5
-rw-r--r--lib/lettering/font_variant.py5
-rw-r--r--lib/lettering/glyph.py5
-rw-r--r--lib/lettering/kerning.py5
5 files changed, 25 insertions, 0 deletions
diff --git a/lib/lettering/__init__.py b/lib/lettering/__init__.py
index 5a9d345c..a733aa9f 100644
--- a/lib/lettering/__init__.py
+++ b/lib/lettering/__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 .font import Font, FontError
diff --git a/lib/lettering/font.py b/lib/lettering/font.py
index 3ef99d47..7b479072 100644
--- a/lib/lettering/font.py
+++ b/lib/lettering/font.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 json
import os
from copy import deepcopy
diff --git a/lib/lettering/font_variant.py b/lib/lettering/font_variant.py
index 2071b2cb..b1e38368 100644
--- a/lib/lettering/font_variant.py
+++ b/lib/lettering/font_variant.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 os
import inkex
diff --git a/lib/lettering/glyph.py b/lib/lettering/glyph.py
index 84517474..3bedd7ed 100644
--- a/lib/lettering/glyph.py
+++ b/lib/lettering/glyph.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
from inkex import paths, transforms
diff --git a/lib/lettering/kerning.py b/lib/lettering/kerning.py
index 920e7d59..6db9ba1e 100644
--- a/lib/lettering/kerning.py
+++ b/lib/lettering/kerning.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 inkex import NSS
from lxml import etree