forked from marlanperumal/pdf_statement_reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.54 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="pdf_statement_reader",
version="0.2.3",
description="PDF Statement Reader",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/marlanperumal/pdf_statement_reader",
author="Marlan Perumal",
author_email="[email protected]",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords="bank statement pdf digitise",
packages=find_packages(exclude=["contrib", "docs", "test"]),
python_requires='>=3.6',
install_requires=['pikepdf', 'tabula-py', 'pandas', 'numpy', "click"],
include_package_data=True,
extras_require={
"dev": ["check-manifest"],
"test": ["pytest", "coverage"]
},
entry_points={
"console_scripts": [
"psr=pdf_statement_reader:cli",
"pdfsr=pdf_statement_reader:cli"
]
},
project_urls={
"Bug Reports": "https://github.com/marlanperumal/pdf_statement_reader/issues",
"Source": "https://github.com/marlanperumal/pdf_statement_reader"
}
)