Metadata-Version: 2.3
Name: pyrouting
Version: 0.1.5
Summary: Mobility data routing
Author: osrokas
Author-email: rokasptr@gmail.com>
Requires-Python: >=3.10
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: contextily (>=1.6.2)
Requires-Dist: fastparquet (>=2024.5.0)
Requires-Dist: geojson (>=3.1.0)
Requires-Dist: geopandas (>=1.0.1)
Requires-Dist: networkx (>=2.2.3)
Requires-Dist: osmnx (>=1.9.1)
Requires-Dist: pandas (>=2.2.0)
Requires-Dist: pyarrow (>=17.0.0)
Requires-Dist: scipy (>=1.14.1)
Requires-Dist: tqdm (>=4.66.2)
Description-Content-Type: text/markdown

# Mobility data routing

This package provides a set of tools to route mobility data.


## Setup environment

### 1. Install poetry

```
pip install poetry
```

### 2. Create project

```
poetry init
```

### 3. Install dependencies

```
poetry install
```

### 4. Build with poetry

```
poetry build
```

### 5. Publish to PyPi

```
poetry publish
```

