Metadata-Version: 2.1
Name: battle_simulation
Version: 1.0.6
Summary: A battle simulation package for strategic resource deployment.
Author: Christian Johnson
Author-email: cjohnson@metisos.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: scikit-learn
Requires-Dist: joblib

# Battle Simulation

A Python package for simulating strategic resource deployments in battle scenarios using machine learning models.

## Installation

```bash
pip install battle_simulation


Usage
python
Copy code
from battle_simulation.core import start_battle_simulation

start_battle_simulation()
yaml
Copy code

---

### **Step 4: Create a `pyproject.toml` (Optional)**

If you prefer modern build tools, include the following `pyproject.toml`:

```toml
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
