-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.29 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='GraphConverter',
packages=['GraphConverter', 'GraphConverter.util', 'GraphConverter.document', 'GraphConverter.merging',
'GraphConverter.models'],
version='0.4',
license='MIT',
description='A tool for creating a graph representation out of the content of PDF documents.',
long_description=long_description,
author='Michael Aigner, Florian Preis',
# author_email='[email protected]',
url='https://github.com/MBAigner/Graph-Converter',
download_url='https://github.com/MBAigner/GraphConverter/archive/v0.1.tar.gz',
keywords=['python', 'pdf', 'pdf-converter', 'graph', 'graph-algorithms', 'graph-representation', 'visibility-graph',
'document-analysis'],
install_requires=[
'numpy',
'pandas==1.0.3',
'networkx==2.2',
'scikit-learn==0.20.0',
'PDFContentConverter==0.7'
],
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'
],
)