pdfparanoia/setup.py

31 lines
1011 B
Python
Raw Normal View History

2013-02-05 10:10:14 +01:00
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="pdfparanoia",
2013-02-05 10:56:07 +01:00
version="0.0.2",
2013-02-05 10:10:14 +01:00
url="https://github.com/kanzure/pdfparanoia",
license="BSD",
author="Bryan Bishop",
author_email="kanzure@gmail.com",
description="pdf watermark remover library for academic papers",
long_description=open("README.md", "r").read(),
packages=["pdfparanoia"],
2013-02-05 10:56:07 +01:00
package_data={'': ['README.md']},
2013-02-05 10:10:14 +01:00
include_package_data=True,
2013-02-05 10:56:07 +01:00
zip_safe=False,
2013-02-05 10:10:14 +01:00
install_requires=["pdfminer>=0", "pdfquery>=0"],
platforms="any",
classifiers=[
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
#"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
]
)