aboutsummaryrefslogtreecommitdiffstats
path: root/src/__main__.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use pyproject.toml + uv_buildAeliton G. Silva2026-01-131-64/+0
| | | | | | | | | | | | | | | | | | | | | | | | | This replaces setup.py by a modern pyproject.toml using uv_build backend. Dependencies are being also managed by uv, so to install dependencies and run the project one can execute: ``` uv sync uv run pytest # optional python -m avp ``` To build the both source and binary (wheel) distribution package run: ``` uv build ``` Uv can be installed with `pip install uv`. The directory structure has been changed to reflect best practices. - src/* -> src/avp/ - src/tests -> ../tests
* update to Qt 6 and Pillow 12tassaron2026-01-111-14/+23
| | | | and yeah, I accidentally ran black on the codebase. I don't want to spend more free time fixing that. All of these changes are simple renames or removals, nothing too major.
* fix #78tassaron2024-09-151-0/+3
|
* Suggest pipx for installation. Fix `avp` command.tassaron2022-05-031-3/+50
| | | | Allegedly the gui_scripts is only different from console_scripts on Windows, and it has the effect of hiding the console window. This seemed to make the `avp` entrypoint crash, possibly because the app already contains its own logic for hiding the console window(?). I've tested this on Windows 11 and it seems to work better using console_scripts.
* make pip-installable as a packagetassaron2022-04-221-2/+2
|
* combined toolkit.py & frame.py into toolkit packagetassaron2017-07-171-1/+3
|
* trying to make setup.py worktassaron2017-07-151-0/+3