flashalpha 0.3.4__tar.gz → 0.3.6__tar.gz

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.
Files changed (28) hide show
  1. {flashalpha-0.3.4 → flashalpha-0.3.6}/.gitignore +6 -0
  2. {flashalpha-0.3.4 → flashalpha-0.3.6}/PKG-INFO +1 -1
  3. {flashalpha-0.3.4 → flashalpha-0.3.6}/pyproject.toml +24 -1
  4. {flashalpha-0.3.4 → flashalpha-0.3.6}/src/flashalpha/__init__.py +1 -1
  5. {flashalpha-0.3.4 → flashalpha-0.3.6}/src/flashalpha/client.py +448 -442
  6. flashalpha-0.3.4/.claude/settings.json +0 -55
  7. flashalpha-0.3.4/.github/workflows/ci.yml +0 -19
  8. flashalpha-0.3.4/CHANGELOG.md +0 -58
  9. flashalpha-0.3.4/CLAUDE.md +0 -67
  10. flashalpha-0.3.4/CONTRIBUTING.md +0 -47
  11. flashalpha-0.3.4/article-flashalpha-python-sdk.md +0 -1
  12. flashalpha-0.3.4/awesome-investing/CODE_OF_CONDUCT.md +0 -46
  13. flashalpha-0.3.4/awesome-investing/LICENSE +0 -116
  14. flashalpha-0.3.4/awesome-investing/PULL_REQUEST_TEMPLATE.md +0 -14
  15. flashalpha-0.3.4/awesome-investing/README.md +0 -202
  16. flashalpha-0.3.4/awesome-investing/contributing.md +0 -19
  17. flashalpha-0.3.4/awesome_investing/README.md +0 -228
  18. flashalpha-0.3.4/awesome_investing/src/static/img/.gitkeep +0 -1
  19. flashalpha-0.3.4/awesome_investing/src/static/img/markus-spiske-5gGcn2PRrtc-unsplash.jpg +0 -0
  20. flashalpha-0.3.4/docs/api.md +0 -2021
  21. flashalpha-0.3.4/examples/quickstart.py +0 -46
  22. flashalpha-0.3.4/tests/__init__.py +0 -0
  23. flashalpha-0.3.4/tests/test_client.py +0 -716
  24. flashalpha-0.3.4/tests/test_integration.py +0 -822
  25. {flashalpha-0.3.4 → flashalpha-0.3.6}/LICENSE +0 -0
  26. {flashalpha-0.3.4 → flashalpha-0.3.6}/README.md +0 -0
  27. {flashalpha-0.3.4 → flashalpha-0.3.6}/src/flashalpha/exceptions.py +0 -0
  28. {flashalpha-0.3.4 → flashalpha-0.3.6}/src/flashalpha/types.py +0 -0
@@ -1,3 +1,9 @@
1
+ # Local tooling / secrets — never commit
2
+ .claude/
3
+ CLAUDE.md
4
+ .env
5
+ .env.*
6
+
1
7
  # Byte-compiled / optimized / DLL files
2
8
  __pycache__/
3
9
  *.py[codz]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flashalpha
3
- Version: 0.3.4
3
+ Version: 0.3.6
4
4
  Summary: Python SDK for the FlashAlpha options analytics API — live options screener, gamma exposure (GEX), VRP, delta, vanna, charm, greeks, 0DTE analytics, volatility surfaces, and more.
5
5
  Project-URL: Homepage, https://flashalpha.com
6
6
  Project-URL: Documentation, https://flashalpha.com/docs
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "flashalpha"
7
- version = "0.3.4"
7
+ version = "0.3.6"
8
8
  description = "Python SDK for the FlashAlpha options analytics API — live options screener, gamma exposure (GEX), VRP, delta, vanna, charm, greeks, 0DTE analytics, volatility surfaces, and more."
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -71,6 +71,29 @@ dev = ["pytest>=7.0", "pytest-cov", "responses>=0.23"]
71
71
  [tool.hatch.build.targets.wheel]
72
72
  packages = ["src/flashalpha"]
73
73
 
74
+ [tool.hatch.build.targets.sdist]
75
+ # Explicit allowlist — only ship source, README, LICENSE, pyproject. Anything
76
+ # else in the working dir (e.g. .claude/, CLAUDE.md, .env*, dist/, tests/)
77
+ # is excluded so the sdist stays minimal.
78
+ support-legacy = false
79
+ include = [
80
+ "/src/flashalpha",
81
+ "/README.md",
82
+ "/LICENSE",
83
+ "/pyproject.toml",
84
+ ]
85
+ exclude = [
86
+ ".claude",
87
+ "CLAUDE.md",
88
+ ".env",
89
+ ".env.*",
90
+ ".gitignore",
91
+ "**/.gitignore",
92
+ ".vscode",
93
+ ".idea",
94
+ "*.local",
95
+ ]
96
+
74
97
  [tool.pytest.ini_options]
75
98
  testpaths = ["tests"]
76
99
  markers = ["integration: hits the live FlashAlpha API (deselect with -m 'not integration')"]
@@ -27,7 +27,7 @@ from .types import (
27
27
  ZeroDteVolContext,
28
28
  )
29
29
 
30
- __version__ = "0.3.4"
30
+ __version__ = "0.3.5"
31
31
  __all__ = [
32
32
  "FlashAlpha",
33
33
  "FlashAlphaError",