summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST.in1
-rw-r--r--README.rst6
-rw-r--r--kconfiglib.py3
-rw-r--r--testsuite.py3
4 files changed, 12 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
deleted file mode 100644
index 42eb410..0000000
--- a/MANIFEST.in
+++ /dev/null
@@ -1 +0,0 @@
-include LICENSE.txt
diff --git a/README.rst b/README.rst
index 213f1b9..d2b29d9 100644
--- a/README.rst
+++ b/README.rst
@@ -375,3 +375,9 @@ support for the ``allnoconfig_y`` option and fixing an obscure issue
with ``comment``\s inside ``choice``\s (that didn't affect correctness but
made outputs differ). ``allnoconfig_y`` is used to force certain symbols
to ``y`` during ``make allnoconfig`` to improve coverage.
+
+License
+-------
+
+See `LICENSE.txt <LICENSE.txt>`_. SPDX license identifiers are used in the
+source code.
diff --git a/kconfiglib.py b/kconfiglib.py
index 4516825..883cc33 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -1,3 +1,6 @@
+# Copyright (c) 2011-2017, Ulf Magnusson
+# SPDX-License-Identifier: ISC
+
"""
Overview
========
diff --git a/testsuite.py b/testsuite.py
index 8115847..e7168a6 100644
--- a/testsuite.py
+++ b/testsuite.py
@@ -1,3 +1,6 @@
+# Copyright (c) 2011-2017, Ulf Magnusson
+# SPDX-License-Identifier: ISC
+
# This is the Kconfiglib test suite. It runs selftests on Kconfigs provided by
# us and tests compatibility with the C Kconfig implementation by comparing the
# output of Kconfiglib with the output of the scripts/kconfig/*conf utilities