Update API docs with new HttpMiddleware ABC. Update setup.py for v0.9.9

Commit 9a67943 · patx · 2025-02-17T19:44:49-05:00

Changeset
9a6794386adf31d8d7b258d9cc339c5965a61ae7
Parents
aff6809c3ee0146109a1e48f2a5341375b26c4d5

View source at this commit

Comments

No comments yet.

Log in to comment

Diff

diff --git a/README.md b/README.md
index 5608427..85c1b97 100644
--- a/README.md
+++ b/README.md
@@ -317,4 +317,6 @@ The main ASGI application class for handling HTTP requests in MicroPie.
 - `_render_template(name: str, **kwargs: Any) -> str`
   - Renders a template asynchronously using Jinja2.
 
+----
+
 © Harrison Erd
diff --git a/setup.py b/setup.py
index b57d7e9..2298194 100644
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,7 @@ Links
 from distutils.core import setup
 
 setup(name="MicroPie",
-    version="0.9.8",
+    version="0.9.9",
     description="A ultra micro web framework w/ Jinja2.",
     long_description=__doc__,
     author="Harrison Erd",
@@ -39,9 +39,7 @@ setup(name="MicroPie",
     "License :: OSI Approved :: BSD License",
     "Operating System :: OS Independent",
     "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
-    "Topic :: Internet :: WWW/HTTP :: WSGI",
-    "Topic :: Internet :: WWW/HTTP :: HTTP Servers",
-    "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
+    "Topic :: Internet :: WWW/HTTP",
     "Framework :: AsyncIO",
     "Topic :: Software Development :: Libraries :: Application Frameworks",
     "Typing :: Typed"],