-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (35 loc) · 1.45 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
from distutils.core import setup
with open('README.rst') as f:
long_description = f.read()
print(long_description)
setup(
name='PDFSegmenter',
packages=['PDFSegmenter', 'PDFSegmenter.util', 'PDFSegmenter.clustering', 'PDFSegmenter.detection',
'PDFSegmenter.merging', 'PDFSegmenter.structure_recognition'],
version='0.1',
license='MIT',
description='This library builds a graph-representation of the content of PDFs. The graph is then clustered, resulting page segments are classified and returned. Tables are retrieved formatted as a CSV.',
long_description=long_description,
author='Michael Aigner, Florian Preis',
# author_email='[email protected]',
url='https://github.com/MBAigner/PDFSegmenter',
download_url='https://github.com/MBAigner/PDFSegmenter/archive/v0.1.tar.gz',
keywords=['pdf', 'document-processing', 'python', 'page-segmentation', 'layout-analysis',
'cluster-analysis', 'annotations', 'csv', 'table', 'detection-model'],
install_requires=[
'numpy',
'networkx==2.2',
'scikit-learn==0.20.0',
'GraphConverter==0.4',
'editdistance==0.5.3'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
],
)