Metadata-Version: 2.3
Name: gnomepy
Version: 0.1.1
Summary: 
Author: mprey
Author-email: masonprey7@gmail.com
Requires-Python: >=3.13
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: bitstring (>=4.3.0,<5.0.0)
Requires-Dist: boto3 (>=1.36.18,<2.0.0)
Requires-Dist: importlib-resources (>=6.5.2,<7.0.0)
Requires-Dist: lxml (>=5.3.1,<6.0.0)
Requires-Dist: numpy (>=2.2.4,<3.0.0)
Requires-Dist: pandas (>=2.2.3,<3.0.0)
Requires-Dist: pytz (>=2025.1,<2026.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: zstandard (>=0.23.0,<0.24.0)
Requires-Dist: zstd (>=1.5.6.1,<2.0.0.0)
Description-Content-Type: text/markdown

# Gnomepy

This package is used internally at GTG for alpha research.

## 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
```
