fastapi-alertengine 1.0.0__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.
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: fastapi-alertengine
3
+ Version: 1.0.0
4
+ Summary: FastAPI AlertEngine: fintech-grade request monitoring (p95 latency + error rate) without Prometheus.
5
+ Author: Tandem Media
6
+ Project-URL: Homepage, https://github.com/Tandem-Media/fastapi-alertengine
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: fastapi
10
+ Requires-Dist: redis
11
+ Requires-Dist: pydantic-settings
12
+ Requires-Dist: httpx
13
+ Provides-Extra: dev
14
+ Requires-Dist: uvicorn[standard]; extra == "dev"
15
+
16
+ # fastapi-alertengine
17
+ Production-ready request monitoring and alerting for FastAPI apps using Redis Streams
@@ -0,0 +1,2 @@
1
+ # fastapi-alertengine
2
+ Production-ready request monitoring and alerting for FastAPI apps using Redis Streams
@@ -0,0 +1,17 @@
1
+ Metadata-Version: 2.4
2
+ Name: fastapi-alertengine
3
+ Version: 1.0.0
4
+ Summary: FastAPI AlertEngine: fintech-grade request monitoring (p95 latency + error rate) without Prometheus.
5
+ Author: Tandem Media
6
+ Project-URL: Homepage, https://github.com/Tandem-Media/fastapi-alertengine
7
+ Requires-Python: >=3.10
8
+ Description-Content-Type: text/markdown
9
+ Requires-Dist: fastapi
10
+ Requires-Dist: redis
11
+ Requires-Dist: pydantic-settings
12
+ Requires-Dist: httpx
13
+ Provides-Extra: dev
14
+ Requires-Dist: uvicorn[standard]; extra == "dev"
15
+
16
+ # fastapi-alertengine
17
+ Production-ready request monitoring and alerting for FastAPI apps using Redis Streams
@@ -0,0 +1,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ fastapi_alertengine.egg-info/PKG-INFO
4
+ fastapi_alertengine.egg-info/SOURCES.txt
5
+ fastapi_alertengine.egg-info/dependency_links.txt
6
+ fastapi_alertengine.egg-info/requires.txt
7
+ fastapi_alertengine.egg-info/top_level.txt
@@ -0,0 +1,7 @@
1
+ fastapi
2
+ redis
3
+ pydantic-settings
4
+ httpx
5
+
6
+ [dev]
7
+ uvicorn[standard]
@@ -0,0 +1,29 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "fastapi-alertengine"
7
+ version = "1.0.0"
8
+ description = "FastAPI AlertEngine: fintech-grade request monitoring (p95 latency + error rate) without Prometheus."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ authors = [
12
+ { name = "Tandem Media" }
13
+ ]
14
+ license = { file = "LICENSE" }
15
+
16
+ dependencies = [
17
+ "fastapi",
18
+ "redis",
19
+ "pydantic-settings",
20
+ "httpx",
21
+ ]
22
+
23
+ [project.optional-dependencies]
24
+ dev = [
25
+ "uvicorn[standard]",
26
+ ]
27
+
28
+ [project.urls]
29
+ Homepage = "https://github.com/Tandem-Media/fastapi-alertengine"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+