summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-09-24 16:29:50 +0200
committerUlf Magnusson <ulfalizer@gmail.com>2017-09-24 16:35:48 +0200
commit747512bd077707215746c78d8b8ed3df35ac965b (patch)
tree11569a3dd9d259f81815f29ff687c33333706b9f
parent366278e1f5324fbb4ce954bc7e563d36441b5160 (diff)
Pass 'license' param to setuptools.setup()v1.0.2
Shows up when you do 'pip show kconfiglib', which previously showed UNKNOWN for the license. I was hoping it'd be inferred from the trove classifiers. Make this a 1.0.2 release.
-rw-r--r--README.rst2
-rw-r--r--setup.py3
2 files changed, 3 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 96f863e..b830bdc 100644
--- a/README.rst
+++ b/README.rst
@@ -26,7 +26,7 @@ installed with e.g.
$ pip(3) install kconfiglib --user
-All releases have a corresponding tag in the git repository, e.g. ``v1.0.1``.
+All releases have a corresponding tag in the git repository, e.g. ``v1.0.2``.
`Semantic versioning <http://semver.org/>`_ is used.
Installation for the Linux kernel
diff --git a/setup.py b/setup.py
index 66e59ad..74e8dec 100644
--- a/setup.py
+++ b/setup.py
@@ -8,13 +8,14 @@ with open(os.path.join(here_dir, "README.rst")) as f:
setuptools.setup(
name="kconfiglib",
# MAJOR.MINOR.MAINTENANCE per http://semver.org
- version="1.0.1",
+ version="1.0.2",
description="A flexible Python Kconfig parser",
long_description=long_description,
url="https://github.com/ulfalizer/Kconfiglib",
author='Ulf "Ulfalizer" Magnusson',
author_email="ulfalizer@gmail.com",
keywords="kconfig, kbuild",
+ license="ISC",
py_modules=["kconfiglib"],
# This python_requires should be correct, but my setuptools is too old to
# test it, so play it safe and leave it out for now. It's unlikely that