Metadata-Version: 2.4
Name: wildflow
Version: 0.1.2
Summary: Modeling natural ecosystems
Author-email: wildflow <sergei@wildflow.ai>
License-Expression: MIT
Project-URL: repository, https://github.com/wildflowai/wildflow
Project-URL: documentation, https://docs.wildflow.ai
Keywords: coral-reefs,computer-vision,photogrammetry,3d-reconstruction,point-cloud,gaussian-splatting
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
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 :: Scientific/Engineering
Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: wildflow-splat>=0.1.2
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: black>=22.0; extra == "dev"
Requires-Dist: ruff>=0.1.0; extra == "dev"

# wildflow

Modeling natural ecosystems.

## Installation

Install all components:

```bash
pip install wildflow
```

or install components separately:

```bash
pip install wildflow-splat  # Just the PLY processing tools
```

## Quick Start

```python
from wildflow import splat

# Process PLY point cloud
config = splat.Config("model.ply")
patch = splat.Patch("output.bin")
config.add_patch(patch)

results = splat.split_point_cloud(config)
print(f"Processed {results['total_points_written']} points")
```

## Requirements

- Python 3.8+

## License

MIT License
