libextractor-python

GNU libextractor
Log | Files | Refs | README | LICENSE

commit 816b978b4163b14e5a01cc5d472c24364995ba99
parent 7434b90981976eaf044172987151ed2c35930e6f
Author: Nils Gillmann <gillmann@infotropique.org>
Date:   Sun, 17 Jun 2018 12:48:17 +0000

+

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

Diffstat:
Rexamples/extract.py -> libextractor/examples/extract.py | 0
Msetup.py | 3++-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/examples/extract.py b/libextractor/examples/extract.py diff --git a/setup.py b/setup.py @@ -11,6 +11,8 @@ setup( packages = ['libextractor'], scripts = ['examples/extract.py'], + entry_points = { "console_scripts": [ "extract.py = libextractor.examples.__main__:main", ] }, + # install_requires = ['ctypes >= 0.9'], # metadata for upload to PyPI @@ -40,5 +42,4 @@ libextractor is a part of the GNU project (https://www.gnu.org/).""", 'Topic :: Text Processing :: Filters'], platforms=['windows', 'Linux', 'MacOS X', 'Solaris', 'FreeBSD'], - )