-
Notifications
You must be signed in to change notification settings - Fork 952
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6eb9957
commit b27d3d0
Showing
3 changed files
with
12 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,4 @@ | ||
""" | ||
Fork of PDFMiner | ||
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. | ||
""" | ||
|
||
__version__ = '20191110' | ||
__version__ = '20200104' | ||
|
||
if __name__ == '__main__': | ||
print(__version__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
from setuptools import setup | ||
from os import path | ||
|
||
import pdfminer as package | ||
|
||
|
||
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f: | ||
readme = f.read() | ||
|
||
setup( | ||
name='pdfminer.six', | ||
version=package.__version__, | ||
|
@@ -17,7 +22,8 @@ | |
"docs": ["sphinx", "sphinx-argparse"], | ||
}, | ||
description='PDF parser and analyzer', | ||
long_description=package.__doc__, | ||
long_description=readme, | ||
long_description_content_type='text/markdown', | ||
license='MIT/X', | ||
author='Yusuke Shinyama + Philippe Guglielmetti', | ||
author_email='[email protected]', | ||
|