patx/micropie
update setup.py docstring
Commit 7394de5 · patx · 2025-02-02T23:57:11-05:00
Comments
No comments yet.
Diff
diff --git a/setup.py b/setup.py
index b302aea..80de66c 100644
--- a/setup.py
+++ b/setup.py
@@ -5,9 +5,9 @@ MicroPie is Fun
::
- from MicroPie import
+ from MicroPie import App
- class MyApp(Server):
+ class MyApp(App):
def index(self):
return 'Hello world!'
@@ -25,7 +25,7 @@ Links
from distutils.core import setup
setup(name="MicroPie",
- version="0.9.5",
+ version="0.9.5.1",
description="A ultra micro web framework w/ Jinja2.",
long_description=__doc__,
author="Harrison Erd",