My favorites | Sign in
Project Logo
       
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
#!/usr/bin/env python
from distutils.core import setup
from pdfminer import __version__

setup(
name='pdfminer',
version=__version__,
description='PDF parser and analyzer',
long_description='''PDFMiner is a suite of programs that help
extracting and analyzing text data of PDF documents.
Unlike other PDF-related tools, it allows to obtain
the exact location of texts in a page, as well as
other extra information such as font information or ruled 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='http://www.unixuser.org/~euske/python/pdfminer/index.html',
packages=[
'pdfminer',
'pdfminer.cmap'
],
scripts=[
'tools/pdf2txt.py',
'tools/dumppdf.py'
],
keywords=['pdf parser', 'pdf converter', 'text mining'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
],
)
Show details Hide details

Change log

r162 by yusuke.shinyama.dummy on Dec 19, 2009   Diff
include cmap
Go to: 
Project members, sign in to write a code review

Older revisions

r142 by yusuke.shinyama.dummy on Oct 23, 2009   Diff
to 4-space indentation
r121 by yusuke.shinyama.dummy on Jul 21, 2009   Diff
20090721
r120 by yusuke.shinyama.dummy on Jul 21, 2009   Diff
layout analysis improved.
All revisions of this file

File info

Size: 1252 bytes, 37 lines
Hosted by Google Code