From d40956bd3350e6ae2a6e5758eb169b7889299ce6 Mon Sep 17 00:00:00 2001 From: John Peter Yamauchi Date: Thu, 6 Aug 2020 12:02:01 -0500 Subject: Add Windows support --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 2268e2d..91888bd 100755 --- a/setup.py +++ b/setup.py @@ -35,9 +35,11 @@ setup( package_data={ 'screenplain.export': ['default.css'] }, - scripts=[ - 'bin/screenplain' - ], + entry_points={ + 'console_scripts': [ + 'screenplain = screenplain.main:cli' + ] + }, classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License', -- cgit