Metadata-Version: 2.4
Name: liumify
Version: 2.0.0
Summary: The Gold Standard of Pythonic Visuals. Proprietary Internal Tool.
Author-email: Liumi Corporation Architecture Team <architect@liumi.cloud>
Project-URL: Homepage, https://liumi.cloud/liumify
Project-URL: Documentation, https://liumi.cloud/liumify/docs
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: fastapi>=0.100.0
Requires-Dist: uvicorn>=0.23.0
Requires-Dist: websockets>=11.0
Requires-Dist: jinja2>=3.1.0
Requires-Dist: pydantic>=2.0.0

# Liumify™

**The Gold Standard of Pythonic Visuals.**

[![Proprietary](https://img.shields.io/badge/License-Liumi_Corp_Proprietary-gold)](LICENSE)
[![Version](https://img.shields.io/badge/Release-2.0.0_Gold-black)]()

---

**WARNING: CONFIDENTIAL.**  
*This software is the private intellectual property of Liumi Corporation. Unauthorized distribution, reverse engineering, or public disclosure of source code is strictly prohibited.*

---

## Overview

**Liumify** is a next-generation UI/UX framework designed exclusively for Liumi Corporation's internal architecture. It allows engineers to build cinema-grade 3D environments and fluid 2D interfaces using pure Python.

By abstracting complex rendering logic into our **Proprietary HD Rendering Core**, developers can focus on business logic while Liumify handles the physics-based lighting, soft shadows, and glassmorphism layouts.

## Key Capabilities

1.  **The Liumi Signature Look:** Out-of-the-box support for our "Gold & Glass" aesthetic.
2.  **HD Rendering Core:** Physically-based materials (PBR) and volumetric lighting.
3.  **Real-time Interactivity:** WebSocket-driven state management for zero-latency updates.
4.  **Python-First API:** Define complex scenes without touching a single line of frontend code.

## Quick Start

Initialize the Liumify Engine and build a dashboard in seconds.

```python
import liumify

# 1. Initialize the Application
app = liumify.LiumifyApp(app_name="Executive Dashboard")

# 2. Add HD 3D Assets
# The 'LiumifySphere' utilizes our internal geometry engine
sphere = liumify.LiumifySphere(radius=1.5)
sphere.set_material(color_hex="#FFD700", roughness=0.1) # Liumi Gold
sphere.set_transform(y=1.0)

floor = liumify.LiumifyPlane(width=30, depth=30)

app.add(sphere)
app.add(floor)

# 3. Add Fluid UI Elements
card = liumify.UI_GlassCard(
    title="Quarterly Projection",
    body="Liumify rendering engine operating at 99.9% efficiency."
)
app.add(card)

# 4. Launch
if __name__ == "__main__":
    # Launches the local secure webview
    app.launch()
