libextractor-python

GNU libextractor
Log | Files | Refs | README | LICENSE

commit c1f403525a82ded59f8c28e9245cd98e5c68dc01
parent 54bbb748fd328e42a01c27fa3a460699a26c8171
Author: Nils Gillmann <gillmann@infotropique.org>
Date:   Fri,  8 Jun 2018 04:59:34 +0000

setup.py: URLs->https. names.

Signed-off-by: Nils Gillmann <gillmann@infotropique.org>

Diffstat:
Msetup.py | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/setup.py b/setup.py @@ -6,7 +6,7 @@ except ImportError: setup( name = "Extractor", - version = "0.6", + version = "0.6.1", packages = ['libextractor'], scripts = ['examples/extract.py'], @@ -14,12 +14,12 @@ setup( #install_requires = ['ctypes >= 0.9'], # metadata for upload to PyPI - author = "Bader Ladjemi, Christian Grothoff", + author = "Bader Ladjemi, Christian Grothoff, Nils Gillmann (ng0)", author_email = "libextractor@gnu.org", description = "Python bindings for GNU libextractor", license = "GNU GPLv3+", keywords = "libextractor binding tag metadata", - url = "http://www.gnu.org/s/libextractor/", + url = "https://www.gnu.org/s/libextractor/", long_description="""libextractor is a simple library for keyword extraction. libextractor does not support all formats but supports a simple plugging mechanism such that you can quickly add extractors for additional formats, even @@ -27,7 +27,7 @@ without recompiling libextractor. libextractor typically ships with a dozen helper-libraries that can be used to obtain keywords from common file-types. -libextractor is a part of the GNU project (http://www.gnu.org/).""", +libextractor is a part of the GNU project (https://www.gnu.org/).""", classifiers=['Development Status :: 3 - Alpha', 'Intended Audience :: Developers',