mirror of
https://github.com/kanzure/pdfparanoia.git
synced 2024-12-04 15:05:52 +01:00
more setup.py magic
This commit is contained in:
parent
99c88643f7
commit
011c10c5c4
@ -17,8 +17,8 @@ usage:
|
||||
"""
|
||||
|
||||
__title__ = "pdfparanoia"
|
||||
__version__ = "0.0.2"
|
||||
__build__ = 0x000002
|
||||
__version__ = "0.0.3"
|
||||
__build__ = 0x000003
|
||||
__author__ = "Bryan Bishop <kanzure@gmail.com>"
|
||||
__license__ = "BSD"
|
||||
__copyright__ = "Copyright 2013 Bryan Bishop"
|
||||
|
12
setup.py
12
setup.py
@ -1,19 +1,21 @@
|
||||
# -*- 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.2",
|
||||
version="0.0.3",
|
||||
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=open("README.md", "r").read(),
|
||||
long_description=long_description,
|
||||
packages=["pdfparanoia"],
|
||||
package_data={'': ['README.md']},
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
install_requires=["pdfminer>=0", "pdfquery>=0"],
|
||||
platforms="any",
|
||||
classifiers=[
|
||||
|
Loading…
Reference in New Issue
Block a user