2015-12-12 09:07:48 -05:00
|
|
|
from setuptools import setup
|
2015-08-29 14:15:09 -04:00
|
|
|
|
|
|
|
setup(
|
|
|
|
name='NextAction',
|
2016-02-03 17:36:54 -05:00
|
|
|
version='0.3',
|
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",
|
2015-08-29 14:15:09 -04:00
|
|
|
],
|
2015-12-12 09:07:48 -05:00
|
|
|
},
|
|
|
|
install_requires=[
|
|
|
|
'todoist-python',
|
|
|
|
]
|
2015-08-29 14:15:09 -04:00
|
|
|
)
|