ynab-amazon-categorizer 1.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.
@@ -0,0 +1,7 @@
1
+ """YNAB Amazon Categorizer - Automatically categorize Amazon transactions in YNAB."""
2
+
3
+ __version__ = "1.0.0"
4
+ __author__ = "dizzlkheinz"
5
+ __description__ = (
6
+ "Automatically categorize Amazon transactions in YNAB with rich item information"
7
+ )
@@ -0,0 +1,6 @@
1
+ """Allow running the package as a module with python -m ynab_amazon_categorizer."""
2
+
3
+ from .cli import main
4
+
5
+ if __name__ == "__main__":
6
+ main()