Final preparations for v2.0

dev^2
Hoffelhas 2023-01-15 22:00:00 +01:00
parent 1f8f6ab182
commit a560a59857
2 changed files with 3 additions and 3 deletions

View File

@ -368,7 +368,7 @@ def initialise_api(args):
sync_api = initialise_sync_api(api) sync_api = initialise_sync_api(api)
# Save SYNC API token to enable partial syncs # Save SYNC API token to enable partial syncs
api.sync_token = sync_api['sync_token'] api.sync_token = sync_api['sync_token']
except Exception as e: except Exception as e:
logging.error( logging.error(
f"Could not connect to Todoist: '{e}'") f"Could not connect to Todoist: '{e}'")

View File

@ -2,12 +2,12 @@ from setuptools import setup
setup( setup(
name='autodoist', name='autodoist',
version='1.5', version='2.0',
py_modules=['autodoist'], py_modules=['autodoist'],
url='https://github.com/Hoffelhas/automation-todoist', url='https://github.com/Hoffelhas/automation-todoist',
license='MIT', license='MIT',
author='Alexander Haselhoff', author='Alexander Haselhoff',
author_email='alexander.haselhoff@outlook.com', author_email='xela@live.nl',
description='Added functionality for Todoist: 1) next-action labels, 2) sub-task regeneration, 3) postpone end of day, and 4) (un)header items simultaneously)', 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=[ install_requires=[
'todoist-python', 'todoist-python',