Update to use setuptools

master
Andrew Williams 2015-12-12 14:07:48 +00:00
parent 97bd4f7fb4
commit 130b2f8ccb
2 changed files with 12 additions and 7 deletions

View File

@ -1,13 +1,15 @@
#!/usr/bin/env python #!/usr/bin/env python
import time
import logging import logging
import sys
import argparse import argparse
from datetime import datetime
# noinspection PyPackageRequirements
from todoist.api import TodoistAPI from todoist.api import TodoistAPI
import time
import sys
from datetime import datetime
def get_subitems(items, parent_item=None): def get_subitems(items, parent_item=None):
"""Search a flat item list for child items""" """Search a flat item list for child items"""

View File

@ -1,4 +1,4 @@
from distutils.core import setup from setuptools import setup
setup( setup(
name='NextAction', name='NextAction',
@ -10,8 +10,11 @@ setup(
author_email='andy@tensixtyone.com', 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.', description='A more GTD-like workflow for Todoist. Uses the REST API to add and remove a @next_action label from tasks.',
entry_points={ entry_points={
"distutils.commands": [ "console_scripts": [
"nextaction=nextaction:main", "nextaction=nextaction:main",
], ],
} },
install_requires=[
'todoist-python',
]
) )