-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
74 lines (63 loc) · 2.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
from setuptools import setup, find_packages
from codecs import open
from os import path, system
import sys
import subprocess
from setuptools.command.install import install
import pkgutil
__version__ = '0.0.10'
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
# get the dependencies and installs
with open(path.join(here, 'requirements.txt'), encoding='utf-8') as f:
all_reqs = f.read().split('\n')
class XPDFInstall(install):
def run(self):
try:
if path.isfile('/usr/local/bin/pdftotext'):
print("Detected xpdf library.")
else:
print("Did not detect xpdf library. Now attempting to install...")
if sys.platform.startswith('linux'):
bash_script = 'linux_install.sh'
bash_instructions = "sh -c cd /tmp/ && wget http://www.xpdfreader.com/dl/xpdf-tools-linux-4.00.tar.gz && tar -xvzf xpdf-tools-linux-4.00.tar.gz && sudo cp xpdf-tools-linux-4.00/bin64/* /usr/local/bin && sudo cp xpdf-tools-linux-4.00/doc/sample-xpdfrc /usr/local/etc/xpdfrc"
elif sys.platform.startswith('darwin'):
bash_script = 'mac_install.sh'
bash_instructions = "cd /tmp/ && wget http://www.xpdfreader.com/dl/xpdf-tools-mac-4.00.tar.gz && tar -xvzf xpdf-tools-mac-4.00.tar.gz && cp xpdf-tools-mac-4.00/bin64/* /usr/local/bin && cp xpdf-tools-mac-4.00/doc/sample-xpdfrc /usr/local/etc/xpdfrc"
# subprocess.call([bash_instructions])
system(bash_instructions)
except Exception as e:
print(e)
print("Error installing xpdf. Please follow custom installation instructions at: https://github.com/ecatkins/xpdf_python.")
else:
install.run(self)
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
dependency_links = [x.strip().replace('git+', '') for x in all_reqs if x.startswith('git+')]
setup(
name='xpdf_python',
version=__version__,
description='Python wrapper for xpdf',
long_description=long_description,
url='https://github.com/ecatkins/xpdf_python',
download_url='https://github.com/ecatkins/xpdf_python/tarball/' + __version__,
license='BSD',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
],
keywords='',
packages=find_packages(exclude=['docs', 'tests*']),
include_package_data=True,
author='Edward Atkins',
install_requires=install_requires,
dependency_links=dependency_links,
author_email='[email protected]',
#run custom code
package_data = {
'install_xpdf':['install_xpdf/mac_install.sh','install_xpdf/linux_install.sh']
},
cmdclass={'install': XPDFInstall},
)