pdfminer.six/setup.py

46 lines
1.6 KiB
Python
Raw Normal View History

2013-10-17 14:05:27 +00:00
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup
from pdfminer import __version__
import sys
setup(
2014-09-15 09:10:00 +00:00
name='pdfminer.six',
version=__version__,
packages=['pdfminer',],
package_data={'pdfminer': ['cmap/*.pickle.gz']},
install_requires=['six', 'chardet'] if sys.version_info >= (3, 0) else ['six'],
description='PDF parser and analyzer',
long_description='''fork of PDFMiner using six for Python 2+3 compatibility
2014-09-15 08:42:08 +00:00
PDFMiner is a tool for extracting information from PDF documents.
2013-11-07 07:14:53 +00:00
Unlike other PDF-related tools, it focuses entirely on getting
and analyzing text data. PDFMiner allows to obtain
2013-11-07 07:14:53 +00:00
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 + Philippe Guglielmetti',
author_email='pdfminer@goulu.net',
url='http://github.com/goulu/pdfminer',
scripts=[
'tools/pdf2txt.py',
'tools/dumppdf.py',
'tools/latin2ascii.py',
],
keywords=['pdf parser', 'pdf converter', 'layout analysis', 'text mining'],
classifiers=[
2014-09-03 11:17:41 +00:00
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Text Processing',
],
)