add setup.py to package this
This commit is contained in:
parent
831df98437
commit
ba883a5868
1 changed files with 16 additions and 0 deletions
16
setup.py
Normal file
16
setup.py
Normal file
|
|
@ -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 <fabian@posixlycorrect.com>",
|
||||
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",
|
||||
],
|
||||
},
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue