autodoist/setup.py

18 lines
505 B
Python
Raw Normal View History

2015-08-29 14:15:09 -04:00
from distutils.core import setup
setup(
name='NextAction',
2015-09-05 10:56:09 -04:00
version='0.2-dev',
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={
"distutils.commands": [
"nextaction = nextaction:main",
],
}
)