aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use pyproject.toml + uv_buildAeliton G. Silva2026-01-131-67/+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-27/+31
| | | | 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.
* pin pillow version to one with qt5 supportBrianna Rainey2024-04-101-1/+1
|
* include test data in package, pytest-qt plugin for testing Qt event loop, ↵tassaron2022-05-091-1/+2
| | | | remove useless pytest fixtures
* Suggest pipx for installation. Fix `avp` command.tassaron2022-05-031-2/+2
| | | | 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.
* switch Pillow-SIMD for Pillowtassaron2022-04-291-2/+2
| | | | It is easier for people to install with pip. We can always go back to SIMD in the future when we have a better install script. Packaged versions can still use Pillow-SIMD
* make pip-installable as a packagetassaron2022-04-221-26/+35
|
* ctrl-c ends commandline mode properlytassaron2017-08-281-1/+1
|
* fixed relative image scale bug & Life preset bugtassaron2017-08-101-1/+1
| | | | dicts must be alphabetized in AV files
* component class now tracks colorwidgetstassaron2017-08-011-1/+1
| | | | so adding new color-selection widgets is now simple
* components auto-connect & track widgets, less autosave spamtassaron2017-07-231-1/+1
| | | | importing toolkit from live interpreter now works
* add component in context menu, del/ins hotkeystassaron2017-07-201-2/+2
| | | | + preset manager uses mainwindow component list
* ffmpeg functions moved to toolkit, component format simplifiedtassaron2017-07-201-5/+10
| | | | component methods are auto-decorated & settings are now class variables
* new hotkey to preview the ffmpeg commandtassaron2017-07-161-1/+1
|
* apply complex filters to audio streams from componentstassaron2017-07-161-5/+19
| | | | tons of sound options could be given now, + installation using setup.py
* trying to make setup.py worktassaron2017-07-151-19/+34
|
* QT5 Conversion + Directory StructureDH42017-06-231-51/+19
|
* cx_freeze Path UpdatesDH42017-06-231-21/+42
|
* add setup.py, automatic discovery for avconv/ffmpeg, add installation help ↵Martin Kaistra2015-03-051-0/+30
to readme