ungana

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs | README

commit e382fac1e00abd562573fa9fd411ca15b37c01bf
parent 2f356cd1ec86b6e530048fdcf6933e5076be4c5c
Author: Carlosokumu <carlosokumu254@gmail.com>
Date:   Thu, 14 Aug 2025 00:25:59 +0300

add icalendar dependency

Diffstat:
Mpyproject.toml | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/pyproject.toml b/pyproject.toml @@ -5,8 +5,11 @@ build-backend = "setuptools.build_meta" [project] name = "calendarapp" version = "0.1.0" -description = "Client application that creates customized .ics files for ticket booking and event reservations" +description = "Client application that creates customized .ics files for ticket booking and event reservations" requires-python = ">=3.8" +dependencies = [ + "icalendar>=5.0.0", +] [project.scripts] cal = "calendarapp.runnable.calendar_cli:main" @@ -14,4 +17,3 @@ cal = "calendarapp.runnable.calendar_cli:main" [tool.setuptools.packages.find] where = ["."] include = ["calendarapp*"] -