Metadata-Version: 2.4
Name: oqstack
Version: 0.1.0
Summary: OpenQuant India — meta-package that installs the full oq-* stack (oq-core, oq-data, oq-backtest, oq-broker, oq-mcp, oq-zoo).
Project-URL: Homepage, https://github.com/revorhq/openquant
Project-URL: Repository, https://github.com/revorhq/openquant
Project-URL: Issues, https://github.com/revorhq/openquant/issues
Author: OpenQuant India Contributors
License: Apache-2.0
Keywords: backtesting,bse,finance,india,mcp,nse,quant,sebi,trading
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Financial :: Investment
Requires-Python: >=3.11
Requires-Dist: oq-backtest>=0.1.0
Requires-Dist: oq-broker>=0.1.0
Requires-Dist: oq-core>=0.1.0
Requires-Dist: oq-data>=0.1.0
Requires-Dist: oq-mcp>=0.1.0
Requires-Dist: oq-zoo>=0.1.0
Description-Content-Type: text/markdown

# oqstack

The meta-package that installs the full **OpenQuant India** stack in one go.

```bash
pip install oqstack
```

This pulls in:

- [`oq-core`](https://pypi.org/project/oq-core/) — shared primitives (Instrument, TradingCalendar)
- [`oq-data`](https://pypi.org/project/oq-data/) — NSE data pipeline + PIT universes
- [`oq-backtest`](https://pypi.org/project/oq-backtest/) — honest-cost backtester
- [`oq-broker`](https://pypi.org/project/oq-broker/) — unified broker abstraction + paper engine
- [`oq-mcp`](https://pypi.org/project/oq-mcp/) — MCP server for LLM clients
- [`oq-zoo`](https://pypi.org/project/oq-zoo/) — community strategy library

Prefer to install only what you need? Each component is a separately
installable package — see the links above.

```python
import oqstack
# or, use sub-packages directly:
import oq_core, oq_data, oq_backtest, oq_broker, oq_mcp, oq_zoo
```

Repository: <https://github.com/revorhq/openquant>. Apache License 2.0.
