Files
pdfplumber/setup.py
T
Jeremy Singer-Vine 302b8a72ad Fix resolution/decoding of list-type metadata
Big thanks to @jeffbarrera for flagging:
https://github.com/jsvine/pdfplumber/issues/14
2016-05-24 16:41:03 -04:00

25 lines
608 B
Python

import sys, os
from setuptools import setup, find_packages
import subprocess
version = "0.4.4"
base_reqs = [
"chardet",
"pycrypto",
"unicodecsv>=0.14.1",
"pdfminer.six>=20151013"
]
setup(
name="pdfplumber",
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,
entry_points={
"console_scripts": [ "pdfplumber = pdfplumber.cli:main" ]
}
)