forked from HazyResearch/pdftotree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (55 loc) · 1.56 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
"""For pip."""
from setuptools import setup
from setuptools import find_packages
exec (open('pdftotree/_version.py').read())
setup(
name='pdftotree',
version=__version__,
description='Parse PDFs into HTML-like trees.',
long_description=open("README.rst").read(),
packages=find_packages(),
install_requires=[
'IPython',
'PyPDF2',
'beautifulsoup4',
'future',
'h5py',
'keras==2.0.8',
'numpy',
'pandas',
'pdfminer.six',
'pillow',
'scipy',
'selectivesearch',
'six',
'sklearn',
'tabula-py',
'tensorflow',
'wand'
],
keywords=['pdf', 'parsing', 'html'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
url="https://github.com/HazyResearch/pdftotree",
scripts=[
'bin/pdftotree',
'bin/extract_tables',
],
classifiers=[ # https://pypi.python.org/pypi?:action=list_classifiers
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
],
project_urls={
'Tracker': 'https://github.com/HazyResearch/pdftotree/issues',
'Source': 'https://github.com/HazyResearch/pdftotree',
},
python_requires='>3',
author="Hazy Research",
author_email="senwu@cs.stanford.edu",
license='MIT',
)