justzvan@lemmy.ml to Programming@programming.devEnglish · 6 hours agoI made a FOSS AI file organizer!github.comexternal-linkmessage-square19fedilinkarrow-up125arrow-down111file-text
arrow-up114arrow-down1external-linkI made a FOSS AI file organizer!github.comjustzvan@lemmy.ml to Programming@programming.devEnglish · 6 hours agomessage-square19fedilinkfile-text
minus-squareinfeeeee@lemm.eelinkfedilinkarrow-up2·3 hours agoPython is installed by default on all linux and mac systems, so it’s just one more command to install pipx. From there just pipx install tagify. You don’t need an installer, just specify the build tools in pyproject.toml: https://packaging.python.org/en/latest/specifications/pyproject-toml/#declaring-build-system-dependencies-the-build-system-table e.g. with setuptools: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html If you publish to pypi it will build the wheel files when you publish a version. That’s the easiest way I know. Innosetup is windows only. On linux you don’t need such a thing.
Python is installed by default on all linux and mac systems, so it’s just one more command to install pipx. From there just
pipx install tagify
. You don’t need an installer, just specify the build tools in pyproject.toml: https://packaging.python.org/en/latest/specifications/pyproject-toml/#declaring-build-system-dependencies-the-build-system-table e.g. with setuptools: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.htmlIf you publish to pypi it will build the wheel files when you publish a version. That’s the easiest way I know.
Innosetup is windows only. On linux you don’t need such a thing.