-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
43 lines (38 loc) · 1.48 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
from setuptools import setup, find_packages
import re
with open('requirements.txt') as req:
requirements = req.read().splitlines()
with open('README.md', encoding='utf-8') as f:
readme = f.read()
with open('CHANGELOG.md', encoding='utf-8') as f:
version = re.findall(r'\[(\d*.\d*.\d*)\]', f.read())[0]
setup(name='bbva2pandas',
version=version,
description='Parse BBVA monthly reports directly to a Dataframe',
long_description=readme,
long_description_content_type='text/markdown',
install_requires=requirements,
scripts=[
'bin/bbva2pandas',
],
url='https://github.com/blalop/bbva2pandas',
author='Alejandro Blanco López',
author_email='alexbl1996@gmail.com',
license='GPLv3+',
packages=find_packages(exclude=['tests']),
keywords='bbva pdf bank regex',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Database',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Accounting',
'Typing :: Typed'
]
)