Bump version

pull/351/head 20200104
Pieter Marsman 2020-01-04 18:15:15 +01:00
parent 6eb9957e8a
commit b27d3d0aff
3 changed files with 12 additions and 14 deletions

View File

@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased] ## [Unreleased]
Nothing here
## [20200104] - 2019-01-04
## Removed ## Removed
- Support for Python 2 ([#346](https://github.com/pdfminer/pdfminer.six/pull/346)) - Support for Python 2 ([#346](https://github.com/pdfminer/pdfminer.six/pull/346))

View File

@ -1,16 +1,4 @@
""" __version__ = '20200104'
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'
if __name__ == '__main__': if __name__ == '__main__':
print(__version__) print(__version__)

View File

@ -1,7 +1,12 @@
from setuptools import setup from setuptools import setup
from os import path
import pdfminer as package import pdfminer as package
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md')) as f:
readme = f.read()
setup( setup(
name='pdfminer.six', name='pdfminer.six',
version=package.__version__, version=package.__version__,
@ -17,7 +22,8 @@ setup(
"docs": ["sphinx", "sphinx-argparse"], "docs": ["sphinx", "sphinx-argparse"],
}, },
description='PDF parser and analyzer', description='PDF parser and analyzer',
long_description=package.__doc__, long_description=readme,
long_description_content_type='text/markdown',
license='MIT/X', license='MIT/X',
author='Yusuke Shinyama + Philippe Guglielmetti', author='Yusuke Shinyama + Philippe Guglielmetti',
author_email='pdfminer@goulu.net', author_email='pdfminer@goulu.net',