setup.py update

master
Hoffelhas 2020-05-10 15:09:31 +02:00
parent 5efacae2c7
commit a8d9ce9f09
1 changed files with 7 additions and 12 deletions

View File

@ -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',
]