autodoist/setup.py

21 lines
540 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(
name='NextAction',
2020-03-10 23:27:57 -04:00
version='0.5',
2015-08-29 14:15:09 -04:00
py_modules=['nextaction'],
url='https://github.com/nikdoof/NextAction',
license='MIT',
author='Andrew Williams',
author_email='andy@tensixtyone.com',
description='A more GTD-like workflow for Todoist. Uses the REST API to add and remove a @next_action label from tasks.',
entry_points={
2015-12-12 09:07:48 -05:00
"console_scripts": [
"nextaction=nextaction:main",
2016-02-20 12:24:48 -05:00
],
},
2015-12-12 09:07:48 -05:00
install_requires=[
'todoist-python',
]
2015-08-29 14:15:09 -04:00
)