tsk-todo 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tsk-todo
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Minimal todo CLI for the terminal. Pure Python, zero dependencies.
5
5
  Keywords: cli,todo,task,task-manager,productivity,terminal,gtd
6
6
  Author: michaelrbarley
@@ -30,40 +30,45 @@ Description-Content-Type: text/markdown
30
30
  [![Python](https://img.shields.io/pypi/pyversions/tsk-todo)](https://pypi.org/project/tsk-todo/)
31
31
  [![Dependencies](https://img.shields.io/badge/dependencies-none-brightgreen)](https://pypi.org/project/tsk-todo/)
32
32
 
33
- A small task manager for the terminal.
33
+ A small task manager for the terminal. One line to add a task, one file to keep them in, and
34
+ nothing to configure.
34
35
 
36
+ ![tsk adding three tasks, listing them, and completing a repeating one](https://github.com/michaelrbarley/tsk-todo/raw/master/docs/demo.svg)
37
+
38
+ ```
39
+ uv tool install tsk-todo
35
40
  ```
36
- $ tsk add water the plants @home +garden due:tomorrow every:weekly
37
- added 1: water the plants
38
41
 
39
- $ tsk add fix the login bug @work +urgent due:yesterday p:h
40
- added 2: fix the login bug
42
+ Or try it without installing anything: `uvx --from tsk-todo tsk`
41
43
 
42
- $ tsk
43
- 2 H yesterday fix the login bug @work +urgent
44
- 1 tomorrow water the plants @home +garden every:weekly
45
- ```
44
+ ## Why you might like it
46
45
 
47
- No daemon, no config file, no dependencies. Your tasks live in one JSON file you can read.
46
+ **There is nothing to set up.** No config file, no theme to pick, no coefficients to tune. It works
47
+ the way it works, and the first thing you do with it is add a task.
48
48
 
49
- ## Install
49
+ **You can predict the order.** Due date, then priority, then id. That is the entire rule. Nothing
50
+ computes a score behind your back, so a task never jumps the queue for a reason you cannot see.
50
51
 
51
- Needs Python 3.11 or newer.
52
+ **It repeats properly.** Finish a daily task a week late and the next one is due tomorrow, not eight
53
+ overdue copies waiting to be dismissed one at a time.
52
54
 
53
- ```
54
- uv tool install tsk-todo
55
- ```
55
+ **It stays out of the way.** `tsk add email bob@example.com about the invoice` does exactly what you
56
+ meant. So does `tsk add fix the -v flag`. Nothing gets swallowed as metadata.
56
57
 
57
- The command is `tsk`. The package is [`tsk-todo`](https://pypi.org/project/tsk-todo/), because
58
- `tsk` on PyPI belongs to something else.
58
+ **You can leave whenever.** Your tasks are one JSON file you can read, diff and commit. Stop using
59
+ `tsk` tomorrow and they are still sitting there in a format anything can open.
60
+
61
+ ## Install
59
62
 
60
- To try it without installing anything:
63
+ Needs Python 3.11 or newer, and nothing else. There are no runtime dependencies.
61
64
 
62
65
  ```
63
- uvx --from tsk-todo tsk
66
+ uv tool install tsk-todo
64
67
  ```
65
68
 
66
- `pip install tsk-todo` works too, and from a clone it is `uv tool install .`
69
+ The command is `tsk`. The package is [`tsk-todo`](https://pypi.org/project/tsk-todo/), because
70
+ `tsk` on PyPI belongs to something else. `pip install tsk-todo` works too, and from a clone it is
71
+ `uv tool install .`
67
72
 
68
73
  ## The idea
69
74
 
@@ -4,40 +4,45 @@
4
4
  [![Python](https://img.shields.io/pypi/pyversions/tsk-todo)](https://pypi.org/project/tsk-todo/)
5
5
  [![Dependencies](https://img.shields.io/badge/dependencies-none-brightgreen)](https://pypi.org/project/tsk-todo/)
6
6
 
7
- A small task manager for the terminal.
7
+ A small task manager for the terminal. One line to add a task, one file to keep them in, and
8
+ nothing to configure.
8
9
 
10
+ ![tsk adding three tasks, listing them, and completing a repeating one](https://github.com/michaelrbarley/tsk-todo/raw/master/docs/demo.svg)
11
+
12
+ ```
13
+ uv tool install tsk-todo
9
14
  ```
10
- $ tsk add water the plants @home +garden due:tomorrow every:weekly
11
- added 1: water the plants
12
15
 
13
- $ tsk add fix the login bug @work +urgent due:yesterday p:h
14
- added 2: fix the login bug
16
+ Or try it without installing anything: `uvx --from tsk-todo tsk`
15
17
 
16
- $ tsk
17
- 2 H yesterday fix the login bug @work +urgent
18
- 1 tomorrow water the plants @home +garden every:weekly
19
- ```
18
+ ## Why you might like it
20
19
 
21
- No daemon, no config file, no dependencies. Your tasks live in one JSON file you can read.
20
+ **There is nothing to set up.** No config file, no theme to pick, no coefficients to tune. It works
21
+ the way it works, and the first thing you do with it is add a task.
22
22
 
23
- ## Install
23
+ **You can predict the order.** Due date, then priority, then id. That is the entire rule. Nothing
24
+ computes a score behind your back, so a task never jumps the queue for a reason you cannot see.
24
25
 
25
- Needs Python 3.11 or newer.
26
+ **It repeats properly.** Finish a daily task a week late and the next one is due tomorrow, not eight
27
+ overdue copies waiting to be dismissed one at a time.
26
28
 
27
- ```
28
- uv tool install tsk-todo
29
- ```
29
+ **It stays out of the way.** `tsk add email bob@example.com about the invoice` does exactly what you
30
+ meant. So does `tsk add fix the -v flag`. Nothing gets swallowed as metadata.
30
31
 
31
- The command is `tsk`. The package is [`tsk-todo`](https://pypi.org/project/tsk-todo/), because
32
- `tsk` on PyPI belongs to something else.
32
+ **You can leave whenever.** Your tasks are one JSON file you can read, diff and commit. Stop using
33
+ `tsk` tomorrow and they are still sitting there in a format anything can open.
34
+
35
+ ## Install
33
36
 
34
- To try it without installing anything:
37
+ Needs Python 3.11 or newer, and nothing else. There are no runtime dependencies.
35
38
 
36
39
  ```
37
- uvx --from tsk-todo tsk
40
+ uv tool install tsk-todo
38
41
  ```
39
42
 
40
- `pip install tsk-todo` works too, and from a clone it is `uv tool install .`
43
+ The command is `tsk`. The package is [`tsk-todo`](https://pypi.org/project/tsk-todo/), because
44
+ `tsk` on PyPI belongs to something else. `pip install tsk-todo` works too, and from a clone it is
45
+ `uv tool install .`
41
46
 
42
47
  ## The idea
43
48
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "tsk-todo"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Minimal todo CLI for the terminal. Pure Python, zero dependencies."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes