-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 987 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
setup(
name='todoist_taskwarrior',
version='0.1.0.dev0',
description="Todoist <-> Taskwarrior two-way sync",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords='Todoist Taskwarrior',
author='René Jochum',
author_email='[email protected]',
url='https://git.webmeisterei.com/webmeisterei/todoist-taskwarrior',
license='MIT',
packages=find_packages('.', exclude=['ez_setup']),
package_dir={'': '.'},
include_package_data=True,
zip_safe=True,
install_requires=[
'setuptools',
'Click',
'todoist-python',
'taskw',
],
entry_points={
'console_scripts': [
'titwsync=todoist_taskwarrior.cli:cli'
],
}
)