Metadata-Version: 2.4
Name: smartenv-py
Version: 0.1.0
Summary: Simple environment variable manager
Author-email: Your Name <you@example.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/yourusername/smartenv
Project-URL: Repository, https://github.com/yourusername/smartenv
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# smartenv

Simple environment variable management for Python applications.

## Features

- Automatically load values from a `.env` file
- Validate required environment variables
- Support default values
- Return typed values for `int`, `bool`, and `list`
- Raise clear, colorful errors

## Quick start

```python
from smartenv import Env

env = Env()

DATABASE_URL = env.require("DATABASE_URL")
DEBUG = env.bool("DEBUG", default=False)
PORT = env.int("PORT", default=8000)
```

## Installation

```bash
pip install smartenv-py
```
