Repository URL to install this package:
|
Version:
0.1.2 ▾
|
3stack-pdfminer
/
setup.py
|
|---|
#!/usr/bin/env python
import setuptools
import pdfminer
__version__ = pdfminer.__version__
setuptools.setup(
name='3stack-pdfminer',
version=__version__,
description='PDF parser and analyzer',
long_description='''PDFMiner is a tool for extracting information from PDF documents.
Unlike other PDF-related tools, it focuses entirely on getting
and analyzing text data. PDFMiner allows to obtain
the exact location of texts in a page, as well as
other information such as fonts or lines.
It includes a PDF converter that can transform PDF files
into other text formats (such as HTML). It has an extensible
PDF parser that can be used for other purposes instead of text analysis.''',
license='MIT/X',
author='Yusuke Shinyama',
author_email='yusuke at cs dot nyu dot edu',
url='https://github.com/3stack-software/pdfminer/',
extras_require={
'crypto': ['pycrypto'],
},
packages=[
'pdfminer',
],
package_data={
'pdfminer': ['cmap/*.pickle.gz']
},
scripts=[
'tools/pdf2txt.py',
'tools/dumppdf.py',
'tools/latin2ascii.py',
],
keywords=['pdf parser', 'pdf converter', 'layout analysis', 'text mining'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Text Processing',
],
)