Skip to content

Commit

Permalink
Bump to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jsvine committed Mar 7, 2016
1 parent 1b861b9 commit 560601b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pdfplumber/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
pdfminer.pdftypes.STRICT = False
pdfminer.pdfinterp.STRICT = False

VERSION_TUPLE = (0, 2, 0)
VERSION_TUPLE = (0, 3, 0)
VERSION = ".".join(map(str, VERSION_TUPLE))

def load(file_or_buffer, **kwargs):
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
from setuptools import setup, find_packages
import subprocess

version = __import__("pdfplumber").VERSION

base_reqs = [
"chardet",
"pycrypto",
Expand All @@ -11,8 +13,8 @@

setup(
name="pdfplumber",
description="Plumb a PDF for detailed information about each char, rectangle, line, etc.",
version="0.2.0",
description="Plumb a PDF for detailed information about each char, rectangle, and line — and easily extract text and tables.",
version=version,
packages=find_packages(exclude=["test",]),
tests_require=[ "nose", "pandas" ] + base_reqs,
install_requires=base_reqs,
Expand Down

0 comments on commit 560601b

Please sign in to comment.