mirror of
https://github.com/kanzure/pdfparanoia.git
synced 2024-12-04 23:15:52 +01:00
more setup.py magic
This commit is contained in:
parent
99c88643f7
commit
011c10c5c4
@ -17,8 +17,8 @@ usage:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
__title__ = "pdfparanoia"
|
__title__ = "pdfparanoia"
|
||||||
__version__ = "0.0.2"
|
__version__ = "0.0.3"
|
||||||
__build__ = 0x000002
|
__build__ = 0x000003
|
||||||
__author__ = "Bryan Bishop <kanzure@gmail.com>"
|
__author__ = "Bryan Bishop <kanzure@gmail.com>"
|
||||||
__license__ = "BSD"
|
__license__ = "BSD"
|
||||||
__copyright__ = "Copyright 2013 Bryan Bishop"
|
__copyright__ = "Copyright 2013 Bryan Bishop"
|
||||||
|
12
setup.py
12
setup.py
@ -1,19 +1,21 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
import os
|
||||||
|
|
||||||
|
long_description = open(os.path.join(os.path.dirname(__file__), "README.md")).read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pdfparanoia",
|
name="pdfparanoia",
|
||||||
version="0.0.2",
|
version="0.0.3",
|
||||||
url="https://github.com/kanzure/pdfparanoia",
|
url="https://github.com/kanzure/pdfparanoia",
|
||||||
license="BSD",
|
license="BSD",
|
||||||
author="Bryan Bishop",
|
author="Bryan Bishop",
|
||||||
author_email="kanzure@gmail.com",
|
author_email="kanzure@gmail.com",
|
||||||
|
maintainer="Bryan Bishop",
|
||||||
|
maintainer_email="kanzure@gmail.com",
|
||||||
description="pdf watermark remover library for academic papers",
|
description="pdf watermark remover library for academic papers",
|
||||||
long_description=open("README.md", "r").read(),
|
long_description=long_description,
|
||||||
packages=["pdfparanoia"],
|
packages=["pdfparanoia"],
|
||||||
package_data={'': ['README.md']},
|
|
||||||
include_package_data=True,
|
|
||||||
zip_safe=False,
|
|
||||||
install_requires=["pdfminer>=0", "pdfquery>=0"],
|
install_requires=["pdfminer>=0", "pdfquery>=0"],
|
||||||
platforms="any",
|
platforms="any",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
|
Loading…
Reference in New Issue
Block a user