Metadata-Version: 2.2
Name: fletora
Version: 0.0.1
Summary: Add your description here
License: MIT License
        
        Copyright (c) 2025 Mohammed Al-Ameen
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Requires-Python: >=3.13
Description-Content-Type: text/markdown
Requires-Dist: arel>=0.3.0
Requires-Dist: fastapi[standard]>=0.115.8

# Fletora

Build frontend applications in Python. Yeah, I know, it sounds CRAZY!

## Name Origin

A sleek, futuristic name that feels fresh and unique.

> _DeepSeek AI_

---

## UV Setup Instructions

### 1. Install `uv` (if not already installed)

```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```

### 2. Create and activate a virtual environment

```bash
uv venv
source .venv/bin/activate  # On Unix/macOS
# or
.venv\Scripts\activate     # On Windows
```

### 3. Install dependencies

```bash
uv sync
```

---

## Pip Setup Instructions

### 1. Create and activate a virtual environment

```bash
python -m venv .venv
source .venv/bin/activate  # On Unix/macOS
# or
.venv\Scripts\activate     # On Windows
```

### 2. Install dependencies

```bash
pip install -r requirements.txt
```

---

## Running the Application Server

### Using FastAPI CLI

```bash
fastapi dev samples/main.py
```

### Using Uvicorn

```bash
python samples/main.py
```

The application will be available at `http://localhost:8000`.

---

## Development

To enable hot reloading during development, the server automatically watches for file changes and refreshes the browser.

## Resources

- [PyScript GitHub](https://github.com/pyscript/pyscript)
