Metadata-Version: 2.4
Name: mostlyrightmd
Version: 0.1.1
Summary: Local-first SDK for quants researching prediction-market weather settlements. Meta package: research() join + shared utilities. Python module: `import mostlyright`.
Author-email: Robert Tarabcak <tarabcakr@gmail.com>
License-Expression: MIT
Keywords: kalshi,metar,polymarket,quantitative-finance,weather
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27
Requires-Dist: jsonschema>=4.21
Requires-Dist: tzdata; sys_platform == 'win32'
Provides-Extra: parquet
Requires-Dist: pandas<4.0,>=2.2; extra == 'parquet'
Requires-Dist: pyarrow<24.0,>=17.0; extra == 'parquet'
Provides-Extra: polars
Requires-Dist: narwhals<2.0,>=1.20; extra == 'polars'
Requires-Dist: pandas<4.0,>=2.2; extra == 'polars'
Requires-Dist: polars<2.0,>=1.0; extra == 'polars'
Requires-Dist: pyarrow<24.0,>=17.0; extra == 'polars'
Provides-Extra: research
Requires-Dist: mostlyrightmd-weather<0.2,>=0.1.0; extra == 'research'
Requires-Dist: pandas<4.0,>=2.2; extra == 'research'
Requires-Dist: pyarrow<24.0,>=17.0; extra == 'research'
Description-Content-Type: text/markdown

# mostlyrightmd

Local-first SDK for quants researching prediction-market weather settlements.

Meta package: exposes `mostlyright.research()` (the observation × climate join) and re-exports common utilities.

## Install

```bash
pip install mostlyrightmd                # core only (helpers + snapshot primitives)
pip install mostlyrightmd[research]      # core + weather, enables `mostlyright.research()`
pip install mostlyrightmd-weather        # weather data sources (transitively brings core)
```

`mostlyrightmd` and `mostlyrightmd-weather` share the `mostlyright.*` Python namespace but ship as separate PyPI distributions so users who need only the helpers can skip the heavier weather deps. `research()` lazy-imports `mostlyright.weather` and raises a clear error if the weather package is not installed.

See the workspace [README](../../README.md) and [CLAUDE.md](../../CLAUDE.md) for project rules.
