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.
- {flashalpha-0.3.4 → flashalpha-0.3.6}/.gitignore +6 -0
- {flashalpha-0.3.4 → flashalpha-0.3.6}/PKG-INFO +1 -1
- {flashalpha-0.3.4 → flashalpha-0.3.6}/pyproject.toml +24 -1
- {flashalpha-0.3.4 → flashalpha-0.3.6}/src/flashalpha/__init__.py +1 -1
- {flashalpha-0.3.4 → flashalpha-0.3.6}/src/flashalpha/client.py +448 -442
- flashalpha-0.3.4/.claude/settings.json +0 -55
- flashalpha-0.3.4/.github/workflows/ci.yml +0 -19
- flashalpha-0.3.4/CHANGELOG.md +0 -58
- flashalpha-0.3.4/CLAUDE.md +0 -67
- flashalpha-0.3.4/CONTRIBUTING.md +0 -47
- flashalpha-0.3.4/article-flashalpha-python-sdk.md +0 -1
- flashalpha-0.3.4/awesome-investing/CODE_OF_CONDUCT.md +0 -46
- flashalpha-0.3.4/awesome-investing/LICENSE +0 -116
- flashalpha-0.3.4/awesome-investing/PULL_REQUEST_TEMPLATE.md +0 -14
- flashalpha-0.3.4/awesome-investing/README.md +0 -202
- flashalpha-0.3.4/awesome-investing/contributing.md +0 -19
- flashalpha-0.3.4/awesome_investing/README.md +0 -228
- flashalpha-0.3.4/awesome_investing/src/static/img/.gitkeep +0 -1
- flashalpha-0.3.4/awesome_investing/src/static/img/markus-spiske-5gGcn2PRrtc-unsplash.jpg +0 -0
- flashalpha-0.3.4/docs/api.md +0 -2021
- flashalpha-0.3.4/examples/quickstart.py +0 -46
- flashalpha-0.3.4/tests/__init__.py +0 -0
- flashalpha-0.3.4/tests/test_client.py +0 -716
- flashalpha-0.3.4/tests/test_integration.py +0 -822
- {flashalpha-0.3.4 → flashalpha-0.3.6}/LICENSE +0 -0
- {flashalpha-0.3.4 → flashalpha-0.3.6}/README.md +0 -0
- {flashalpha-0.3.4 → flashalpha-0.3.6}/src/flashalpha/exceptions.py +0 -0
- {flashalpha-0.3.4 → flashalpha-0.3.6}/src/flashalpha/types.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flashalpha
|
|
3
|
-
Version: 0.3.
|
|
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.
|
|
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')"]
|