tsk-todo 0.1.0__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,39 +1,75 @@
1
+ Metadata-Version: 2.4
2
+ Name: tsk-todo
3
+ Version: 0.1.2
4
+ Summary: Minimal todo CLI for the terminal. Pure Python, zero dependencies.
5
+ Keywords: cli,todo,task,task-manager,productivity,terminal,gtd
6
+ Author: michaelrbarley
7
+ Author-email: michaelrbarley <301309661+michaelrbarley@users.noreply.github.com>
8
+ License-Expression: MIT
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Environment :: Console
11
+ Classifier: Intended Audience :: End Users/Desktop
12
+ Classifier: Operating System :: POSIX
13
+ Classifier: Programming Language :: Python :: 3 :: Only
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Python :: 3.14
18
+ Classifier: Topic :: Office/Business :: Scheduling
19
+ Classifier: Topic :: Utilities
20
+ Classifier: Typing :: Typed
21
+ Requires-Python: >=3.11
22
+ Project-URL: Homepage, https://github.com/michaelrbarley/tsk-todo
23
+ Project-URL: Source, https://github.com/michaelrbarley/tsk-todo
24
+ Project-URL: Issues, https://github.com/michaelrbarley/tsk-todo/issues
25
+ Description-Content-Type: text/markdown
26
+
1
27
  # tsk
2
28
 
3
- A small task manager for the terminal.
29
+ [![PyPI](https://img.shields.io/pypi/v/tsk-todo)](https://pypi.org/project/tsk-todo/)
30
+ [![Python](https://img.shields.io/pypi/pyversions/tsk-todo)](https://pypi.org/project/tsk-todo/)
31
+ [![Dependencies](https://img.shields.io/badge/dependencies-none-brightgreen)](https://pypi.org/project/tsk-todo/)
4
32
 
5
- ```
6
- $ tsk add water the plants @home +garden due:tomorrow every:weekly
7
- added 1: water the plants
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.
8
35
 
9
- $ tsk add fix the login bug @work +urgent due:yesterday p:h
10
- added 2: fix the login bug
36
+ ![tsk adding three tasks, listing them, and completing a repeating one](https://github.com/michaelrbarley/tsk-todo/raw/master/docs/demo.svg)
11
37
 
12
- $ tsk
13
- 2 H yesterday fix the login bug @work +urgent
14
- 1 tomorrow water the plants @home +garden every:weekly
38
+ ```
39
+ uv tool install tsk-todo
15
40
  ```
16
41
 
17
- No daemon, no config file, no dependencies. Your tasks live in one JSON file you can read.
42
+ Or try it without installing anything: `uvx --from tsk-todo tsk`
18
43
 
19
- ## Install
44
+ ## Why you might like it
20
45
 
21
- Needs Python 3.11 or newer.
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.
22
48
 
23
- ```
24
- git clone https://github.com/michaelrbarley/tsk-todo
25
- cd tsk-todo
26
- uv tool install .
27
- ```
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.
28
51
 
29
- The command is `tsk`. The package is `tsk-todo`, because `tsk` on PyPI belongs to something else.
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.
30
54
 
31
- Or run it from the clone without installing anything:
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.
57
+
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
62
+
63
+ Needs Python 3.11 or newer, and nothing else. There are no runtime dependencies.
32
64
 
33
65
  ```
34
- uv run tsk
66
+ uv tool install tsk-todo
35
67
  ```
36
68
 
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 .`
72
+
37
73
  ## The idea
38
74
 
39
75
  You type what you mean and `tsk` works out which parts are metadata:
@@ -1,59 +1,49 @@
1
- Metadata-Version: 2.4
2
- Name: tsk-todo
3
- Version: 0.1.0
4
- Summary: Minimal todo CLI for the terminal. Pure Python, zero dependencies.
5
- Keywords: cli,todo,task,task-manager,productivity,terminal,gtd
6
- Author: michaelrbarley
7
- Author-email: michaelrbarley <301309661+michaelrbarley@users.noreply.github.com>
8
- License-Expression: MIT
9
- Classifier: Development Status :: 4 - Beta
10
- Classifier: Environment :: Console
11
- Classifier: Intended Audience :: End Users/Desktop
12
- Classifier: Operating System :: POSIX
13
- Classifier: Programming Language :: Python :: 3 :: Only
14
- Classifier: Topic :: Utilities
15
- Requires-Python: >=3.11
16
- Project-URL: Homepage, https://github.com/michaelrbarley/tsk-todo
17
- Project-URL: Source, https://github.com/michaelrbarley/tsk-todo
18
- Project-URL: Issues, https://github.com/michaelrbarley/tsk-todo/issues
19
- Description-Content-Type: text/markdown
20
-
21
1
  # tsk
22
2
 
23
- A small task manager for the terminal.
3
+ [![PyPI](https://img.shields.io/pypi/v/tsk-todo)](https://pypi.org/project/tsk-todo/)
4
+ [![Python](https://img.shields.io/pypi/pyversions/tsk-todo)](https://pypi.org/project/tsk-todo/)
5
+ [![Dependencies](https://img.shields.io/badge/dependencies-none-brightgreen)](https://pypi.org/project/tsk-todo/)
24
6
 
25
- ```
26
- $ tsk add water the plants @home +garden due:tomorrow every:weekly
27
- added 1: water the plants
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.
28
9
 
29
- $ tsk add fix the login bug @work +urgent due:yesterday p:h
30
- added 2: fix the login bug
10
+ ![tsk adding three tasks, listing them, and completing a repeating one](https://github.com/michaelrbarley/tsk-todo/raw/master/docs/demo.svg)
31
11
 
32
- $ tsk
33
- 2 H yesterday fix the login bug @work +urgent
34
- 1 tomorrow water the plants @home +garden every:weekly
12
+ ```
13
+ uv tool install tsk-todo
35
14
  ```
36
15
 
37
- No daemon, no config file, no dependencies. Your tasks live in one JSON file you can read.
16
+ Or try it without installing anything: `uvx --from tsk-todo tsk`
38
17
 
39
- ## Install
18
+ ## Why you might like it
40
19
 
41
- Needs Python 3.11 or newer.
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.
42
22
 
43
- ```
44
- git clone https://github.com/michaelrbarley/tsk-todo
45
- cd tsk-todo
46
- uv tool install .
47
- ```
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.
48
25
 
49
- The command is `tsk`. The package is `tsk-todo`, because `tsk` on PyPI belongs to something else.
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.
50
28
 
51
- Or run it from the clone without installing anything:
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.
31
+
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
36
+
37
+ Needs Python 3.11 or newer, and nothing else. There are no runtime dependencies.
52
38
 
53
39
  ```
54
- uv run tsk
40
+ uv tool install tsk-todo
55
41
  ```
56
42
 
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 .`
46
+
57
47
  ## The idea
58
48
 
59
49
  You type what you mean and `tsk` works out which parts are metadata:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "tsk-todo"
3
- version = "0.1.0"
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"
@@ -15,7 +15,13 @@ classifiers = [
15
15
  "Intended Audience :: End Users/Desktop",
16
16
  "Operating System :: POSIX",
17
17
  "Programming Language :: Python :: 3 :: Only",
18
+ "Programming Language :: Python :: 3.11",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Programming Language :: Python :: 3.13",
21
+ "Programming Language :: Python :: 3.14",
22
+ "Topic :: Office/Business :: Scheduling",
18
23
  "Topic :: Utilities",
24
+ "Typing :: Typed",
19
25
  ]
20
26
  dependencies = []
21
27
 
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