Metadata-Version: 2.4
Name: smart-energy-manager-lib
Version: 1.2.0
Summary: Generic library for energy management and peer-to-peer trading
Home-page: https://github.com/x24250511/smart-energy-platform
Author: Smart Energy Platform
Author-email: projectwebx11@gmail.com
Keywords: energy solar renewable trading p2p
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
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
Requires-Python: >=3.8
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: keywords
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# Smart Energy Manager Library

Generic Python library for energy management and peer-to-peer trading.

## Installation
```bash
pip install smart-energy-manager-lib
```

## Quick Start
```python
from smart_energy_manager_lib import EnergyAccount

account = EnergyAccount("USER001", "John", generated=200, consumed=100)
print(f"Surplus: {account.calculate_surplus()} kWh")
```

## Features

- Energy account management
- Surplus/deficit calculations
- P2P energy trading
- Carbon offset tracking
- Solar generation estimation

## License

MIT
