Metadata-Version: 2.4
Name: lmkoncedone
Version: 0.1.1
Summary: Simple email notifications when your Python functions complete
Author-email: panda26 <test.email@example.com>
Project-URL: Homepage, https://github.com/yourusername/notify-me
Project-URL: Documentation, https://github.com/yourusername/notify-me#readme
Project-URL: Repository, https://github.com/yourusername/notify-me
Project-URL: Bug Tracker, https://github.com/yourusername/notify-me/issues
Keywords: notification,email,monitoring,decorator,alert
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
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 :: Communications :: Email
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Monitoring
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: pytest-cov>=3.0.0; extra == "dev"
Requires-Dist: black>=22.0.0; extra == "dev"
Requires-Dist: flake8>=4.0.0; extra == "dev"
Requires-Dist: python-dotenv>=0.19.0; extra == "dev"
Dynamic: license-file

# lmkoncedone 📧

> Get email notifications when your Python functions complete — simple as a decorator!

Perfect for long-running tasks, data pipelines, ML training, web scraping, and any code you want to monitor remotely.

## Why notify-me?

- 🎯 **Simple**: Just add `@notify` to your function
- 📧 **Email-based**: Works everywhere, no external services needed
- 🔋 **Zero dependencies**: Pure Python, uses only stdlib
- ⚡ **Quick setup**: Configure once with environment variables
- 🛡️ **Safe**: Notification failures won't break your code
- 📊 **Informative**: Get function name, duration, errors, and results

## Installation

```bash
pip install lmkoncedone
