Add setup.py, proper CLI interface.

This commit is contained in:
2015-08-29 19:15:09 +01:00
parent a62ae17866
commit 360be44dd7
2 changed files with 60 additions and 28 deletions

17
setup.py Normal file
View File

@@ -0,0 +1,17 @@
from distutils.core import setup
setup(
name='NextAction',
version='0.1',
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",
],
}
)