Metadata-Version: 2.4
Name: envcop
Version: 0.1.0
Summary: Validate environment variables at startup — catches missing secrets, weak passwords, and misconfigurations before they reach production.
Author-email: Antoine Guillon <antoine-devfr@users.noreply.github.com>
License: MIT
Project-URL: Homepage, https://github.com/antoine-devfr/envcop
Project-URL: Repository, https://github.com/antoine-devfr/envcop
Project-URL: Issues, https://github.com/antoine-devfr/envcop/issues
Keywords: env,environment,security,secrets,validation,config,devops
Classifier: Development Status :: 3 - Alpha
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 :: Security
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: yaml
Requires-Dist: PyYAML>=6.0; extra == "yaml"
Provides-Extra: dev
Requires-Dist: pytest>=7; extra == "dev"
Requires-Dist: PyYAML>=6.0; extra == "dev"

# envcop (Python)

Validate environment variables at startup — catch missing secrets, weak passwords, and misconfigurations before they reach production.

```bash
pip install envcop
```

```python
import envcop
envcop.check()
```

Full documentation: [github.com/antoine-devfr/envcop](https://github.com/antoine-devfr/envcop)
