Metadata-Version: 2.4
Name: gla-data
Version: 0.1.0
Summary: Shared tools for loading, transforming, and visualising the GLA datasets used in City Data analysis.
Author-email: Conor Dempsey <conor.dempsey@london.gov.uk>
License: MIT
Requires-Python: >=3.12
Requires-Dist: geopandas>=1.0
Requires-Dist: pandas>=2.2
Requires-Dist: pandera>=0.32.1
Requires-Dist: pyarrow>=24.0.0
Requires-Dist: pydantic-settings
Requires-Dist: requests>=2.32
Requires-Dist: typer>=0.26.8
Description-Content-Type: text/markdown

# gla-data

Shared tools for loading, transforming, and visualising the GLA datasets used in City Data analysis.

## Installation

Add `gla-data` as a PyPI dependency in your `pixi.toml`:

```toml
[pypi-dependencies]
gla-data = ">=0.1"
```

Then run `pixi install`. Pixi pulls geospatial dependencies (geopandas, pyproj, etc.) from conda-forge, which provides reliable pre-built binaries across all platforms and Python versions.

## Development

```bash
git clone <repo-url>
cd gla-data
pixi install

pixi run test       # run tests
pixi run lint       # check code style
pixi run format     # auto-format
pixi run typecheck  # type checking
```
