Metadata-Version: 2.4
Name: progress-list
Version: 0.1.0
Summary: A progress tracking task list with time estimation using PySide6 + QML
Author-email: oyvinrog <your.email@example.com>
License: MIT
Project-URL: Homepage, https://github.com/oyvinrog/progress
Project-URL: Repository, https://github.com/oyvinrog/progress
Project-URL: Issues, https://github.com/oyvinrog/progress/issues
Keywords: progress,task,tracking,time-estimation,pyside6,qml
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Office/Business :: Scheduling
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PySide6<7,>=6.6
Requires-Dist: matplotlib>=3.7.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-qt>=4.0; extra == "dev"
Dynamic: license-file

# Progress List

A progress tracking task list with time estimation using PySide6 + QML.

## Features

- ✓ Tasks with checkboxes to mark completion
- ✓ Automatic time tracking for active tasks
- ✓ Estimated completion times based on historical average
- ✓ Break down tasks into subtasks
- ✓ Add new tasks dynamically
- ✓ Burndown charts to visualize progress

## Installation

```bash
pip install progress-list
```

## Usage

```python
from progress_list import ProgressListApp

# Run the application
app = ProgressListApp()
app.run()
```

Or run directly from the command line:

```bash
python -m progress_list
```

## Requirements

- Python 3.8+
- PySide6 >= 6.6
- matplotlib >= 3.7.0

## Development

### Install development dependencies

```bash
pip install -r requirements-dev.txt
```

### Run tests

```bash
pytest
```

## License

MIT License - see LICENSE file for details.
