Metadata-Version: 2.4
Name: tf-sample-todo
Version: 0.1.0
Summary: Minimal in-memory todo service sample (no third-party deps)
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# tf-sample-todo

Minimal in-memory `TodoService` (dataclasses only, no third-party deps).

```python
from tf_sample_todo import TodoService, TodoCreate

service = TodoService()
service.create_todo(TodoCreate(name="Buy milk", description="2%"))
```

## Publish (public PyPI)

Needs a [pypi.org](https://pypi.org/account/register/) account with 2FA and an **API token**.

```powershell
cd tech-playground\python-repro\python-todo-graft\tf-sample-todo
python -m pip install build twine
python -m build
python -m twine upload dist/*
```

Username: `__token__`  
Password: the API token (`pypi-…`).
