A powerful Python framework for building modern desktop and mobile applications using web technologies. It allows developers to create rich user interfaces with HTML, CSS, and JavaScript while keeping the core logic in Python.
- Python 3.8 or higher
- CMake (for building C++ extensions)
- pip and virtualenv
-
Clone the repository:
git clone https://github.com/RustamovHumoyunMirzo/PyVerse.git cd PyVerse -
Create a virtual environment (recommended):
python -m venv venv source venv/bin/activate # Linux/macOS venv\Scripts\activate # Windows
-
Install dependencies:
pip install --upgrade pip setuptools wheel pip install -e .The
-e .option installs the package in editable mode for development.
You can build cross-platform wheels using cibuildwheel:
cibuildwheel --output-dir wheelhouseFull documentation is available in the docs folder.