2015-12-12 09:07:48 -05:00
from setuptools import setup
2015-08-29 14:15:09 -04:00
setup (
2020-05-10 09:09:31 -04:00
name = ' autodoist ' ,
2021-01-23 15:53:17 -05:00
version = ' 1.5 ' ,
2020-05-10 09:09:31 -04:00
py_modules = [ ' autodoist ' ] ,
url = ' https://github.com/Hoffelhas/automation-todoist ' ,
2015-08-29 14:15:09 -04:00
license = ' MIT ' ,
2020-05-10 09:09:31 -04:00
author = ' Alexander Haselhoff ' ,
author_email = ' alexander.haselhoff@outlook.com ' ,
2021-01-23 15:53:17 -05:00
description = ' Added functionality for Todoist: 1) next-action labels, 2) sub-task regeneration, 3) postpone end of day, and 4) (un)header items simultaneously) ' ,
2015-12-12 09:07:48 -05:00
install_requires = [
' todoist-python ' ,
2021-01-23 15:53:17 -05:00
' requests ' ,
2015-12-12 09:07:48 -05:00
]
2015-08-29 14:15:09 -04:00
)