-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
49 lines (44 loc) · 1.26 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
# -*- coding: utf-8 -*-
# Author: Carlos Vigo
# Contact: [email protected]
from setuptools import setup
from os.path import join, dirname, abspath
from sys import path as sys_path
sys_path.append(abspath('pdf_importer'))
import __project__ # noqa: E402
# Read the README.md file
with open(join(dirname(__file__), 'README.md'), "r") as fh:
long_description = fh.read()
setup(
name=__project__.__package_name__,
version=__project__.__version__,
author=__project__.__short_author__,
author_email=__project__.__email__,
description=__project__.__description__,
long_description=long_description,
long_description_content_type="text/markdown",
url=__project__.__url__,
packages=['pdf_importer'],
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
],
license='GPLv3',
keywords=[
'PDF'
],
python_requires='>=3.6',
setup_requires=[
'pip>=10.0',
'wheel',
'setuptools>=30',
],
install_requires=[
'camelot-py',
'python-dateutil',
'opencv-python',
'pandas'
],
include_package_data=True
)