From 0a48924c0f1dbbfcbdc23712ee44a4b94c7cf06e Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Mon, 17 Aug 2020 17:51:32 +0200 Subject: add stub script --- fuzzycat/fatcat/main.py | 8 ++++++++ setup.py | 1 + 2 files changed, 9 insertions(+) create mode 100644 fuzzycat/fatcat/main.py diff --git a/fuzzycat/fatcat/main.py b/fuzzycat/fatcat/main.py new file mode 100644 index 0000000..9113d8f --- /dev/null +++ b/fuzzycat/fatcat/main.py @@ -0,0 +1,8 @@ +# coding: utf-8 + +""" +Command line entry point for ad-hoc testing. +""" + +def main(): + print("fuzzycat fatcat matching") \ No newline at end of file diff --git a/setup.py b/setup.py index 25ccc46..65e104b 100644 --- a/setup.py +++ b/setup.py @@ -23,6 +23,7 @@ with open("README.md", "r") as fh: python_requires=">=3.6", zip_safe=False, entry_points={"console_scripts": [ + "fuzzycat=fuzzycat.fatcat.main:main", "fuzzycat-issn=fuzzycat.issn:main", ],}, install_requires=[ -- cgit v1.2.3