Metadata-Version: 2.2
Name: geoengineer
Version: 0.1.2
Summary: The official Python library for the GeoEngineerAI API
Home-page: https://github.com/geoengineer-ai/geoengineer-python
Author: GeoEngineer Contributors
Author-email: GeoEngineer Contributors <geoengineerai@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/geoengineer-ai/geoengineer-python
Project-URL: Bug Tracker, https://github.com/geoengineer-ai/geoengineer-python/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: home-page
Dynamic: requires-python

# GeoEngineer

A simple Python package for geotechnical engineering calculations.

## Installation

```bash
pip install geoengineer
```

## Usage

```python
from geoengineer import effective_stress

# Calculate effective stress
sigma_prime = effective_stress(total_stress=100, pore_water_pressure=40)
print(f"Effective stress: {sigma_prime} kPa")  # Output: Effective stress: 60 kPa
```

## Features

- Calculate effective stress in soil

## License

This project is licensed under the MIT License - see the LICENSE file for details. 
