From d129885bbcaa10d9be19af2652b285948c379593 Mon Sep 17 00:00:00 2001 From: Hoffelhas Date: Sat, 23 Jan 2021 21:53:17 +0100 Subject: [PATCH] setup.py update --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 730e5e8..084b741 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,15 @@ from setuptools import setup setup( name='autodoist', - version='1.0', + version='1.5', py_modules=['autodoist'], url='https://github.com/Hoffelhas/automation-todoist', license='MIT', author='Alexander Haselhoff', author_email='alexander.haselhoff@outlook.com', - description='Added functionality for Todoist: 1) next-action labels and 2) re-use recurring sub-tasks', + description='Added functionality for Todoist: 1) next-action labels, 2) sub-task regeneration, 3) postpone end of day, and 4) (un)header items simultaneously)', install_requires=[ 'todoist-python', + 'requests', ] )