From 46f66948473dc0b0ef98525e03bdf73d43992b1d Mon Sep 17 00:00:00 2001 From: Tobias Brox Date: Thu, 30 Dec 2021 03:52:25 +0100 Subject: working on the new kal interface --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 0d097c1..dbd6bd6 100644 --- a/setup.py +++ b/setup.py @@ -29,12 +29,19 @@ setup( "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries", ], scripts=['calendar-cli.py', 'calendar-cli'], + py_modules=['cal'], install_requires=[ 'icalendar', 'caldav>=0.8.1', 'pytz', ## pytz is supposed to be obsoleted, but see https://github.com/collective/icalendar/issues/333 'tzlocal', + 'Click', 'six' ], + entry_points={ + 'console_scripts': [ + 'kal = cal:cli', + ], + }, **metadata ) -- cgit v1.2.3