Metadata-Version: 2.4
Name: thefirstpackage
Version: 0.1.0
Summary: A simple Python package example
Home-page: https://github.com/yourusername/thefirstpackage
Author: Your Name
Author-email: your.email@example.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Simple Todo App

A lightweight, easy-to-use todo list application built with Python and Tkinter.

## Features

- Add new tasks
- Mark tasks as complete/incomplete
- Delete individual tasks
- Clear all tasks at once
- Automatic saving of tasks between sessions
- Clean, modern user interface

## Requirements

- Python 3.x
- Tkinter (usually comes pre-installed with Python)

## How to Run

Simply run the Python script:

```
python todo_app.py
```

## Usage

1. **Add a task**: Type your task in the input field and press Enter or click "Add Task"
2. **Mark as complete**: Select a task and click "Mark Complete"
3. **Delete a task**: Select a task and click "Delete Task"
4. **Clear all tasks**: Click "Clear All" (will ask for confirmation)

## Data Storage

Tasks are automatically saved to a file named `todo_tasks.json` in the same directory as the application. This ensures your tasks persist between sessions.
