From ff7f830f65fa2d494c56a3a29185f93a419a2bf3 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Sat, 30 Jul 2022 12:14:10 -0700 Subject: [PATCH] add __main__.py entrypoint --- CHANGELOG | 4 +++- jc/__main__.py | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 jc/__main__.py diff --git a/CHANGELOG b/CHANGELOG index b679f810..6bad6dfa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,8 +2,10 @@ jc changelog xxxxxxxx v1.20.5 - Add IP Address string parser -- Fix `lsusb` command parser for output containing a `Device Qualifier` section +- Fix `lsusb` command parser for output containing a `Device Qualifier` and + `Binary Object Store Descriptor` sections - Change LANG=C to LC_ALL=C in locale instructions +- Add `__main__.py` to package allowing `python -m jc` usage 20220723 v1.20.4 - Fix URL string parser path list for URLs ending in a forward slash diff --git a/jc/__main__.py b/jc/__main__.py new file mode 100644 index 00000000..58b4937a --- /dev/null +++ b/jc/__main__.py @@ -0,0 +1,3 @@ +import jc.cli + +jc.cli.main()