forked from kostajh/taskwarrior-time-tracking-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 690 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 690 Bytes
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
from setuptools import setup, find_packages
setup(
name='taskwarrior-time-tracking-hook',
version='0.1.4',
url='https://github.com/coddingtonbear/taskwarrior-time-tracking-hook',
description=(
'Track your time in a UDA in taskwarrior'
),
author='Adam Coddington',
author_email='me@adamcoddington.net',
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
install_requires=[
"taskw"
],
packages=find_packages(),
entry_points={
'console_scripts': [
'taskwarrior_time_tracking_hook = taskwarrior_time_tracking_hook:cmdline'
],
},
)