# -*- coding: utf-8 -*- from setuptools import setup import os long_description = open(os.path.join(os.path.dirname(__file__), "README.md")).read() setup( name="pdfparanoia", version="0.0.14", url="https://github.com/kanzure/pdfparanoia", license="BSD", author="Bryan Bishop", author_email="kanzure@gmail.com", maintainer="Bryan Bishop", maintainer_email="kanzure@gmail.com", description="pdf watermark remover library for academic papers", long_description=long_description, install_requires=["pdfminer>=0"], scripts=["bin/pdfparanoia"], platforms="any", zip_safe=False, classifiers=[ "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", # Uses argparse and with statement; 2.7+ "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", ] )