Metadata-Version: 2.4
Name: geotemp-travel
Version: 0.1.1
Summary: GeoTemp MCP client library for climate-aware travel intelligence
Author: GeoTemp
License-Expression: MIT
Project-URL: Homepage, https://github.com/YOUR_USERNAME/geotemp-travel-lib
Project-URL: Repository, https://github.com/YOUR_USERNAME/geotemp-travel-lib
Project-URL: Documentation, https://github.com/YOUR_USERNAME/geotemp-travel-lib/blob/main/QUICKSTART.md
Keywords: mcp,travel,weather,climate,ai-agents,model-context-protocol
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.31.0
Dynamic: license-file

# geotemp-travel

Python client library for the GeoTemp MCP travel intelligence tools.

## Install

```bash
pip install geotemp-travel
```

## Quick example

```python
from geotemp_client import GeoTempClient

client = GeoTempClient(mode="local")
print(client.get_dataset_stats())
```

For full setup and advanced usage, see `QUICKSTART.md`.
