Metadata-Version: 2.4
Name: cartoblobpy
Version: 0.0.1
Summary: A simple map representation and path planning library for 2D occupancy grids.
Author-email: Emir Cem Gezer <me@emircem.com>
Keywords: simulation,dynamics,map
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: shoeboxpy
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: matplotlib
Requires-Dist: casadi
Requires-Dist: networkx
Requires-Dist: pyyaml
Dynamic: license-file

# cartoblobpy

## Running Tests

Run the unittest suite with Python on Windows (PowerShell):

```powershell
py -m unittest discover -s tests -p "test_*.py" -v
```

If `py` is unavailable, use your environment's Python:

```powershell
python -m unittest discover -s tests -p "test_*.py" -v
```
