smart-todo-cli 0.1.0__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.
@@ -0,0 +1,106 @@
1
+ Metadata-Version: 2.4
2
+ Name: smart-todo-cli
3
+ Version: 0.1.0
4
+ Summary: A terminal task manager CLI — add, update, and list tasks with priorities.
5
+ Author-email: Dhaivat NJ <excergiclabs@gmail.com>
6
+ License-Expression: MIT
7
+ Keywords: cli,tasks,todo,terminal
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Environment :: Console
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Requires-Python: >=3.12
13
+ Description-Content-Type: text/markdown
14
+ Requires-Dist: pydantic>=2.12.5
15
+ Requires-Dist: rich>=14.3.3
16
+ Requires-Dist: typer>=0.24.1
17
+
18
+ # cli-tool
19
+
20
+ A terminal task manager CLI — add, update, and list tasks with priorities.
21
+
22
+ ## Install (for everyone)
23
+
24
+ After the package is published to PyPI, anyone can install it with:
25
+
26
+ ```bash
27
+ pip install smart-task-cli
28
+ ```
29
+
30
+ Or with [uv](https://docs.astral.sh/uv/):
31
+
32
+ ```bash
33
+ uv tool install smart-task-cli
34
+ ```
35
+
36
+ Then run the `cli-tool` command from anywhere.
37
+
38
+ ## Usage
39
+
40
+ Tasks are stored in a `tasks.json` file in the current directory.
41
+
42
+ ```bash
43
+ # Add a task (default priority: medium)
44
+ cli-tool add "Buy groceries"
45
+ cli-tool add "Fix bug" --priority high
46
+
47
+ # List all tasks
48
+ cli-tool list
49
+
50
+ # Update a task
51
+ cli-tool update 1 --title "Buy groceries and milk"
52
+ cli-tool update 1 --completed true
53
+ cli-tool update 1 --priority low
54
+ ```
55
+
56
+ ## Publish to PyPI (for maintainers)
57
+
58
+ So that **anyone** can install with `pip install smart-task-cli`, publish the package to [PyPI](https://pypi.org/).
59
+
60
+ ### 1. Create a PyPI account
61
+
62
+ - Sign up at [pypi.org](https://pypi.org/account/register/).
63
+ - (Optional) Create an API token at [pypi.org/manage/account/token/](https://pypi.org/manage/account/token/) for uploads.
64
+
65
+ ### 2. Install publish tools
66
+
67
+ ```bash
68
+ uv add --dev twine
69
+ ```
70
+
71
+ ### 3. Build the package
72
+
73
+ ```bash
74
+ uv build
75
+ ```
76
+
77
+ This creates `dist/smart_task_cli-0.1.0.tar.gz` and a wheel in `dist/`.
78
+
79
+ ### 4. Upload to PyPI
80
+
81
+ **Using twine (recommended):**
82
+
83
+ ```bash
84
+ uv run twine upload dist/*
85
+ ```
86
+
87
+ When prompted, use your PyPI username and **API token** as the password (or set `TWINE_USERNAME` and `TWINE_PASSWORD`).
88
+
89
+ **Using uv:**
90
+
91
+ ```bash
92
+ uv publish
93
+ ```
94
+
95
+ (Configure PyPI token via `UV_PUBLISH_TOKEN` or keyring.)
96
+
97
+ ### 5. After publishing
98
+
99
+ - The package will be live at `https://pypi.org/project/smart-task-cli/`.
100
+ - Anyone can run: `pip install smart-task-cli` and then `cli-tool add "My task"`, etc.
101
+
102
+ ### Notes
103
+
104
+ - **Name on PyPI**: The project name is `smart-task-cli` (the `cli-tool` name was too similar to an existing project).
105
+ - **Version**: Bump `version` in `pyproject.toml` for each release, then run `uv build` and upload again.
106
+ - **Authors**: Update `authors` in `pyproject.toml` with your name and email before publishing.
@@ -0,0 +1,89 @@
1
+ # cli-tool
2
+
3
+ A terminal task manager CLI — add, update, and list tasks with priorities.
4
+
5
+ ## Install (for everyone)
6
+
7
+ After the package is published to PyPI, anyone can install it with:
8
+
9
+ ```bash
10
+ pip install smart-task-cli
11
+ ```
12
+
13
+ Or with [uv](https://docs.astral.sh/uv/):
14
+
15
+ ```bash
16
+ uv tool install smart-task-cli
17
+ ```
18
+
19
+ Then run the `cli-tool` command from anywhere.
20
+
21
+ ## Usage
22
+
23
+ Tasks are stored in a `tasks.json` file in the current directory.
24
+
25
+ ```bash
26
+ # Add a task (default priority: medium)
27
+ cli-tool add "Buy groceries"
28
+ cli-tool add "Fix bug" --priority high
29
+
30
+ # List all tasks
31
+ cli-tool list
32
+
33
+ # Update a task
34
+ cli-tool update 1 --title "Buy groceries and milk"
35
+ cli-tool update 1 --completed true
36
+ cli-tool update 1 --priority low
37
+ ```
38
+
39
+ ## Publish to PyPI (for maintainers)
40
+
41
+ So that **anyone** can install with `pip install smart-task-cli`, publish the package to [PyPI](https://pypi.org/).
42
+
43
+ ### 1. Create a PyPI account
44
+
45
+ - Sign up at [pypi.org](https://pypi.org/account/register/).
46
+ - (Optional) Create an API token at [pypi.org/manage/account/token/](https://pypi.org/manage/account/token/) for uploads.
47
+
48
+ ### 2. Install publish tools
49
+
50
+ ```bash
51
+ uv add --dev twine
52
+ ```
53
+
54
+ ### 3. Build the package
55
+
56
+ ```bash
57
+ uv build
58
+ ```
59
+
60
+ This creates `dist/smart_task_cli-0.1.0.tar.gz` and a wheel in `dist/`.
61
+
62
+ ### 4. Upload to PyPI
63
+
64
+ **Using twine (recommended):**
65
+
66
+ ```bash
67
+ uv run twine upload dist/*
68
+ ```
69
+
70
+ When prompted, use your PyPI username and **API token** as the password (or set `TWINE_USERNAME` and `TWINE_PASSWORD`).
71
+
72
+ **Using uv:**
73
+
74
+ ```bash
75
+ uv publish
76
+ ```
77
+
78
+ (Configure PyPI token via `UV_PUBLISH_TOKEN` or keyring.)
79
+
80
+ ### 5. After publishing
81
+
82
+ - The package will be live at `https://pypi.org/project/smart-task-cli/`.
83
+ - Anyone can run: `pip install smart-task-cli` and then `cli-tool add "My task"`, etc.
84
+
85
+ ### Notes
86
+
87
+ - **Name on PyPI**: The project name is `smart-task-cli` (the `cli-tool` name was too similar to an existing project).
88
+ - **Version**: Bump `version` in `pyproject.toml` for each release, then run `uv build` and upload again.
89
+ - **Authors**: Update `authors` in `pyproject.toml` with your name and email before publishing.
@@ -0,0 +1,30 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "smart-todo-cli"
7
+ version = "0.1.0"
8
+ description = "A terminal task manager CLI — add, update, and list tasks with priorities."
9
+ readme = "README.md"
10
+ requires-python = ">=3.12"
11
+ dependencies = [
12
+ "pydantic>=2.12.5",
13
+ "rich>=14.3.3",
14
+ "typer>=0.24.1",
15
+ ]
16
+ authors = [{ name = "Dhaivat NJ", email = "excergiclabs@gmail.com" }]
17
+ license = "MIT"
18
+ keywords = ["cli", "tasks", "todo", "terminal"]
19
+ classifiers = [
20
+ "Development Status :: 4 - Beta",
21
+ "Environment :: Console",
22
+ "Programming Language :: Python :: 3",
23
+ "Programming Language :: Python :: 3.12",
24
+ ]
25
+
26
+ [project.scripts]
27
+ cli-tool = "cli_tool.main:app"
28
+
29
+ [tool.setuptools.packages.find]
30
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,106 @@
1
+ Metadata-Version: 2.4
2
+ Name: smart-todo-cli
3
+ Version: 0.1.0
4
+ Summary: A terminal task manager CLI — add, update, and list tasks with priorities.
5
+ Author-email: Dhaivat NJ <excergiclabs@gmail.com>
6
+ License-Expression: MIT
7
+ Keywords: cli,tasks,todo,terminal
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Environment :: Console
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Requires-Python: >=3.12
13
+ Description-Content-Type: text/markdown
14
+ Requires-Dist: pydantic>=2.12.5
15
+ Requires-Dist: rich>=14.3.3
16
+ Requires-Dist: typer>=0.24.1
17
+
18
+ # cli-tool
19
+
20
+ A terminal task manager CLI — add, update, and list tasks with priorities.
21
+
22
+ ## Install (for everyone)
23
+
24
+ After the package is published to PyPI, anyone can install it with:
25
+
26
+ ```bash
27
+ pip install smart-task-cli
28
+ ```
29
+
30
+ Or with [uv](https://docs.astral.sh/uv/):
31
+
32
+ ```bash
33
+ uv tool install smart-task-cli
34
+ ```
35
+
36
+ Then run the `cli-tool` command from anywhere.
37
+
38
+ ## Usage
39
+
40
+ Tasks are stored in a `tasks.json` file in the current directory.
41
+
42
+ ```bash
43
+ # Add a task (default priority: medium)
44
+ cli-tool add "Buy groceries"
45
+ cli-tool add "Fix bug" --priority high
46
+
47
+ # List all tasks
48
+ cli-tool list
49
+
50
+ # Update a task
51
+ cli-tool update 1 --title "Buy groceries and milk"
52
+ cli-tool update 1 --completed true
53
+ cli-tool update 1 --priority low
54
+ ```
55
+
56
+ ## Publish to PyPI (for maintainers)
57
+
58
+ So that **anyone** can install with `pip install smart-task-cli`, publish the package to [PyPI](https://pypi.org/).
59
+
60
+ ### 1. Create a PyPI account
61
+
62
+ - Sign up at [pypi.org](https://pypi.org/account/register/).
63
+ - (Optional) Create an API token at [pypi.org/manage/account/token/](https://pypi.org/manage/account/token/) for uploads.
64
+
65
+ ### 2. Install publish tools
66
+
67
+ ```bash
68
+ uv add --dev twine
69
+ ```
70
+
71
+ ### 3. Build the package
72
+
73
+ ```bash
74
+ uv build
75
+ ```
76
+
77
+ This creates `dist/smart_task_cli-0.1.0.tar.gz` and a wheel in `dist/`.
78
+
79
+ ### 4. Upload to PyPI
80
+
81
+ **Using twine (recommended):**
82
+
83
+ ```bash
84
+ uv run twine upload dist/*
85
+ ```
86
+
87
+ When prompted, use your PyPI username and **API token** as the password (or set `TWINE_USERNAME` and `TWINE_PASSWORD`).
88
+
89
+ **Using uv:**
90
+
91
+ ```bash
92
+ uv publish
93
+ ```
94
+
95
+ (Configure PyPI token via `UV_PUBLISH_TOKEN` or keyring.)
96
+
97
+ ### 5. After publishing
98
+
99
+ - The package will be live at `https://pypi.org/project/smart-task-cli/`.
100
+ - Anyone can run: `pip install smart-task-cli` and then `cli-tool add "My task"`, etc.
101
+
102
+ ### Notes
103
+
104
+ - **Name on PyPI**: The project name is `smart-task-cli` (the `cli-tool` name was too similar to an existing project).
105
+ - **Version**: Bump `version` in `pyproject.toml` for each release, then run `uv build` and upload again.
106
+ - **Authors**: Update `authors` in `pyproject.toml` with your name and email before publishing.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/smart_todo_cli.egg-info/PKG-INFO
4
+ src/smart_todo_cli.egg-info/SOURCES.txt
5
+ src/smart_todo_cli.egg-info/dependency_links.txt
6
+ src/smart_todo_cli.egg-info/entry_points.txt
7
+ src/smart_todo_cli.egg-info/requires.txt
8
+ src/smart_todo_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ cli-tool = cli_tool.main:app
@@ -0,0 +1,3 @@
1
+ pydantic>=2.12.5
2
+ rich>=14.3.3
3
+ typer>=0.24.1