oqstack 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oqstack/__init__.py +20 -0
- oqstack-0.1.0.dist-info/METADATA +55 -0
- oqstack-0.1.0.dist-info/RECORD +4 -0
- oqstack-0.1.0.dist-info/WHEEL +4 -0
oqstack/__init__.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""oqstack — OpenQuant India meta-package.
|
|
2
|
+
|
|
3
|
+
Re-exports the most common entry points from the underlying packages so
|
|
4
|
+
``import oqstack`` works for casual users.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
|
|
9
|
+
__version__ = "0.1.0"
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def __getattr__(name: str):
|
|
13
|
+
if name in {"core", "data", "backtest", "broker", "mcp", "zoo"}:
|
|
14
|
+
import importlib
|
|
15
|
+
|
|
16
|
+
return importlib.import_module(f"oq_{name}")
|
|
17
|
+
raise AttributeError(f"module 'oqstack' has no attribute {name!r}")
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
__all__ = ["__version__"]
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: oqstack
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: OpenQuant India — meta-package that installs the full oq-* stack (oq-core, oq-data, oq-backtest, oq-broker, oq-mcp, oq-zoo).
|
|
5
|
+
Project-URL: Homepage, https://github.com/revorhq/openquant
|
|
6
|
+
Project-URL: Repository, https://github.com/revorhq/openquant
|
|
7
|
+
Project-URL: Issues, https://github.com/revorhq/openquant/issues
|
|
8
|
+
Author: OpenQuant India Contributors
|
|
9
|
+
License: Apache-2.0
|
|
10
|
+
Keywords: backtesting,bse,finance,india,mcp,nse,quant,sebi,trading
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Intended Audience :: Financial and Insurance Industry
|
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
|
+
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
20
|
+
Requires-Python: >=3.11
|
|
21
|
+
Requires-Dist: oq-backtest>=0.1.0
|
|
22
|
+
Requires-Dist: oq-broker>=0.1.0
|
|
23
|
+
Requires-Dist: oq-core>=0.1.0
|
|
24
|
+
Requires-Dist: oq-data>=0.1.0
|
|
25
|
+
Requires-Dist: oq-mcp>=0.1.0
|
|
26
|
+
Requires-Dist: oq-zoo>=0.1.0
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
|
|
29
|
+
# oqstack
|
|
30
|
+
|
|
31
|
+
The meta-package that installs the full **OpenQuant India** stack in one go.
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install oqstack
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
This pulls in:
|
|
38
|
+
|
|
39
|
+
- [`oq-core`](https://pypi.org/project/oq-core/) — shared primitives (Instrument, TradingCalendar)
|
|
40
|
+
- [`oq-data`](https://pypi.org/project/oq-data/) — NSE data pipeline + PIT universes
|
|
41
|
+
- [`oq-backtest`](https://pypi.org/project/oq-backtest/) — honest-cost backtester
|
|
42
|
+
- [`oq-broker`](https://pypi.org/project/oq-broker/) — unified broker abstraction + paper engine
|
|
43
|
+
- [`oq-mcp`](https://pypi.org/project/oq-mcp/) — MCP server for LLM clients
|
|
44
|
+
- [`oq-zoo`](https://pypi.org/project/oq-zoo/) — community strategy library
|
|
45
|
+
|
|
46
|
+
Prefer to install only what you need? Each component is a separately
|
|
47
|
+
installable package — see the links above.
|
|
48
|
+
|
|
49
|
+
```python
|
|
50
|
+
import oqstack
|
|
51
|
+
# or, use sub-packages directly:
|
|
52
|
+
import oq_core, oq_data, oq_backtest, oq_broker, oq_mcp, oq_zoo
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Repository: <https://github.com/revorhq/openquant>. Apache License 2.0.
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
oqstack/__init__.py,sha256=Yw8y7uRVVHrGYNXHIyN9njOqeCWLNHgnt1lXJoHPqTY,502
|
|
2
|
+
oqstack-0.1.0.dist-info/METADATA,sha256=qqG0aWOz4oHoF5jKT9OH5Joyhmbgpfnica0ykit0SUQ,2205
|
|
3
|
+
oqstack-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
|
|
4
|
+
oqstack-0.1.0.dist-info/RECORD,,
|