-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 780 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf8")
setup(
name='openbk',
packages=find_packages(),
version='1.0.1',
description='A python library to easily extract information and metrics from Moroccan bank statements.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Imad Archid',
author_email='hello@imadarchid.com',
license='GPL',
url='https://github.com/imadarchid/openbk',
install_requires=['tabula-py', 'pandas', 'PyPDF2'],
python_requires='>=3.10',
include_package_data = True,
data_files=[('openbk', ['./openbk/templates/awb.json'])],
)