-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (41 loc) · 1.22 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env python
from setuptools import setup, find_packages
from io import open
readme = open('README.md', encoding='utf8').read()
setup(
name = "visualpdfdiff",
version = "1.0",
install_requires=[
'consolemsg',
'wand',
'PyPdf2',
'future',
'pathlib2;python_version<"3.5"',
],
description = "Side by side visual comparision differences for PDF documents",
author = "David Garcia Garzon",
author_email = "voki@canvoki.net",
url = 'https://github.com/vokimon/visualpdfdiff',
long_description = readme,
long_description_content_type = 'text/markdown',
license = 'GNU General Public License v3 or later (GPLv3+)',
entry_points = {
'console_scripts': [
'visualpdfdiff=visualpdfdiff.diff:main',
],
'back2back.diff': [
'pdf=visualpdfdiff.pdfvisualdiff:diff',
]
},
test_suite = 'b2btest-pdf',
packages=find_packages(exclude=['*_test']),
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
],
)