autodoist/setup.py

16 lines
437 B
Python
Raw Normal View History

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',
version='1.0',
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',
description='Added functionality for Todoist: 1) next-action labels and 2) re-use recurring sub-tasks',
2015-12-12 09:07:48 -05:00
install_requires=[
'todoist-python',
]
2015-08-29 14:15:09 -04:00
)