ynab-amazon-categorizer 0.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ynab_amazon_categorizer/__init__.py +18 -0
- ynab_amazon_categorizer/__main__.py +6 -0
- ynab_amazon_categorizer/cli.py +1057 -0
- ynab_amazon_categorizer-0.0.0.dist-info/METADATA +226 -0
- ynab_amazon_categorizer-0.0.0.dist-info/RECORD +9 -0
- ynab_amazon_categorizer-0.0.0.dist-info/WHEEL +5 -0
- ynab_amazon_categorizer-0.0.0.dist-info/entry_points.txt +2 -0
- ynab_amazon_categorizer-0.0.0.dist-info/licenses/LICENSE +661 -0
- ynab_amazon_categorizer-0.0.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"""YNAB Amazon Categorizer - Automatically categorize Amazon transactions in YNAB."""
|
|
2
|
+
|
|
3
|
+
try:
|
|
4
|
+
from importlib.metadata import version, PackageNotFoundError
|
|
5
|
+
except ImportError:
|
|
6
|
+
# Python < 3.8
|
|
7
|
+
from importlib_metadata import version, PackageNotFoundError
|
|
8
|
+
|
|
9
|
+
try:
|
|
10
|
+
__version__ = version("ynab-amazon-categorizer")
|
|
11
|
+
except PackageNotFoundError:
|
|
12
|
+
# Package not installed, use a default version
|
|
13
|
+
__version__ = "0.0.0+unknown"
|
|
14
|
+
|
|
15
|
+
__author__ = "dizzlkheinz"
|
|
16
|
+
__description__ = (
|
|
17
|
+
"Automatically categorize Amazon transactions in YNAB with rich item information"
|
|
18
|
+
)
|