fymo 0.1.0__py3-none-any.whl

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.
fymo/__init__.py ADDED
@@ -0,0 +1,18 @@
1
+ """
2
+ Fymo - Production-ready Python SSR Framework for Svelte 5
3
+
4
+ A modern web framework that brings the power of Svelte 5 to Python backends,
5
+ enabling server-side rendering with full client-side hydration.
6
+ """
7
+
8
+ from fymo.core.server import create_app, FymoApp
9
+
10
+ __version__ = "0.1.0"
11
+ __author__ = "Fymo Contributors"
12
+ __license__ = "MIT"
13
+
14
+ __all__ = [
15
+ "create_app",
16
+ "FymoApp",
17
+ "__version__"
18
+ ]
fymo/__version__.py ADDED
@@ -0,0 +1,5 @@
1
+ """Version information for Fymo"""
2
+
3
+ __version__ = "0.1.0"
4
+ __version_info__ = (0, 1, 0)
5
+
@@ -0,0 +1,5 @@
1
+ {
2
+ "runtime_path": "/Users/bishwasbhandari/Projects/fymo/fymo/bundler/js/dist/svelte-runtime.js",
3
+ "bundle_size": 1085790,
4
+ "build_time": "2026-04-28T07:57:26.377Z"
5
+ }