From 323812bc590bb74a3cd1df0958f9feb333b1eff9 Mon Sep 17 00:00:00 2001 From: Andrew Simmons Date: Mon, 19 Apr 2021 10:04:53 -0400 Subject: [PATCH] Add entry_point (#23) --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index a4f6b4a..d6ee272 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,11 @@ setup( author_email='vsza@vsza.hu', url='https://github.com/dnet/pySSTV', packages=['pysstv', 'pysstv.tests', 'pysstv.examples'], + entry_points={ + 'console_scripts': [ + 'pysstv = pysstv.__main__:main', + ], + }, keywords='HAM SSTV slow-scan television Scottie Martin Robot Pasokon', install_requires = ['Pillow', 'six'], license='MIT',