aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 4771deaf76b67e0bd34cc3085a91f876855754d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/env/python
try:
    from setuptools import setup, find_packages
except ImportError:
    from distutils.core import setup, find_packages

setup(
    name = "Extractor",
    version = "1.7",

    packages = find_packages(),
    entry_points = { "console_scripts": [ "extract.py = libextractor.examples.__main__:main", ] },

    author = "Bader Ladjemi, Christian Grothoff, Nikita Gillmann",
    author_email = "libextractor@gnu.org",
    description = "Python bindings for GNU libextractor",
    license = "GNU GPLv3+",
    keywords = "libextractor binding tag metadata",
    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
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 (https://www.gnu.org/).
    """,

    classifiers=['Development Status :: 3 - Alpha',
                 'Intended Audience :: Developers',
                 'License :: OSI Approved :: GNU General Public License (GPL)',
                 'Operating System :: OS Independent',
                 'Operating System :: MacOS :: MacOS X',
                 'Operating System :: Microsoft :: Windows',
                 'Operating System :: POSIX',
                 'Topic :: System :: Filesystems',
                 'Topic :: Text Processing :: Filters'],
    platforms=['windows', 'Linux', 'MacOS X', 'Solaris', 'FreeBSD'],
)