forked from JoshData/pdf-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 677 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
setup(name='pdf-diff',
version='0.9.1',
description='Finds differences between two PDF documents',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url='https://github.com/JoshData/pdf-diff',
author=u'Joshua Tauberer',
author_email=u'jt@occams.info',
license='CC0 1.0 Universal',
packages=find_packages(),
install_requires=[
'diff_match_patch_python',
'lxml',
'pillow',
],
entry_points = {
'console_scripts': ['pdf-diff=pdf_diff.command_line:main'],
},
zip_safe=False)