From 0274ddecc769de495726257755c03d8c3e1c5872 Mon Sep 17 00:00:00 2001
From: Alexander Haselhoff <alexander.haselhoff@outlook.com>
Date: Sun, 10 May 2020 15:09:31 +0200
Subject: [PATCH] setup.py update

---
 setup.py | 19 +++++++------------
 1 file changed, 7 insertions(+), 12 deletions(-)

diff --git a/setup.py b/setup.py
index 72a918b..730e5e8 100644
--- a/setup.py
+++ b/setup.py
@@ -1,19 +1,14 @@
 from setuptools import setup
 
 setup(
-    name='NextAction',
-    version='0.5',
-    py_modules=['nextaction'],
-    url='https://github.com/nikdoof/NextAction',
+    name='autodoist',
+    version='1.0',
+    py_modules=['autodoist'],
+    url='https://github.com/Hoffelhas/automation-todoist',
     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={
-        "console_scripts": [
-            "nextaction=nextaction:main",
-        ],
-    },
+    author='Alexander Haselhoff',
+    author_email='alexander.haselhoff@outlook.com',
+    description='Added functionality for Todoist: 1) next-action labels and 2) re-use recurring sub-tasks',
     install_requires=[
         'todoist-python',
     ]