Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.47 KB

README.md

File metadata and controls

60 lines (40 loc) · 1.47 KB

pyside-app-core

Custom style, widgets, and utilities for cross-platform PySide6 applications.

Warning

This project should be considered experimental and subject to breaking changes AT ANY TIME until a v1.0.0 release.

GitHub Release GitHub License CI PyPI - Wheel

Install

To use pyside-app-core as a library in your own projects install the wheel distribution from PyPi

$ pip install pyside-app-core

Local Development

Requirements:

hatch env create

Run example application

An example project/application is included

# switch to the example project dir
cd examples/toolbar-app-project
# build the project
hatch build -t pyside-app --clean
# list the build artifacts
ls dist

Run tests

Hatch can run tests across multiple versions of python.

hatch test -a -p

Hatch Build Plugin

This library exposes a hatch build plugin that will generate Qt resources and package a standalone executable. See the example project for details.