From ba883a5868711632d1e8e83213c88e1ff58daa5e Mon Sep 17 00:00:00 2001 From: Fabian Montero Date: Mon, 9 Mar 2026 17:16:12 -0600 Subject: [PATCH] add setup.py to package this --- setup.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..df5f98f --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +from setuptools import setup + +setup( + name="bac-import", + description="Extract and analyze BAC Costa Rica credit card statements", + author="Fabian Montero ", + version="0.1.0", + py_modules=["bac_extract", "bac_analyze"], + install_requires=["pdfplumber>=0.10.0", "matplotlib>=3.5.0"], + entry_points={ + "console_scripts": [ + "bac-extract=bac_extract:main", + "bac-analyze=bac_analyze:main", + ], + }, +)