Metadata-Version: 2.4
Name: gnomepy
Version: 2.1.0
Summary: 
Author: mprey
Author-email: masonprey7@gmail.com
Requires-Python: >=3.13,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: boto3 (>=1.36.18,<2.0.0)
Requires-Dist: click (>=8.1,<9.0)
Requires-Dist: dash (>=2.18,<3.0)
Requires-Dist: dash-bootstrap-components (>=1.6,<2.0)
Requires-Dist: jpype1 (>=1.5.0,<2.0.0)
Requires-Dist: numpy (>=2.2.4,<3.0.0)
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Requires-Dist: plotly (>=6.6.0,<6.7.0)
Requires-Dist: pyarrow (>=23.0.1,<24.0.0)
Requires-Dist: pytz (>=2025.1,<2026.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: zstandard (>=0.23.0,<0.24.0)
Description-Content-Type: text/markdown

# Gnomepy

This package is used internally at GTG for alpha research.

## Docs

- [Backtest Explorer](docs/explorer.md) — interactive tick-level backtest analysis

## Releasing a new version

The GitHub Actions workflow will automatically run with a tag matching the 
pattern `v*.*.*` is released.

```commandline
poetry version patch  # or minor/major
git commit -m "Release new version"
git tag v$(poetry version -s)
git push origin main --tags
```
