diff options
-rw-r--r-- | fuzzycat/fatcat/main.py | 8 | ||||
-rw-r--r-- | setup.py | 1 |
2 files changed, 9 insertions, 0 deletions
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 @@ -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=[ |