Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pietermarsman committed Jan 4, 2020
1 parent 6eb9957 commit b27d3d0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

Nothing here

## [20200104] - 2019-01-04

## Removed
- Support for Python 2 ([#346](https://github.com/pdfminer/pdfminer.six/pull/346))

Expand Down
14 changes: 1 addition & 13 deletions pdfminer/__init__.py
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__)
8 changes: 7 additions & 1 deletion setup.py
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__,
Expand All @@ -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]',
Expand Down

0 comments on commit b27d3d0

Please sign in to comment.