justzvan@lemmy.ml to Programming@programming.devEnglish · 8 hours agoI made a FOSS AI file organizer!github.comexternal-linkmessage-square19fedilinkarrow-up124arrow-down112file-text
arrow-up112arrow-down1external-linkI made a FOSS AI file organizer!github.comjustzvan@lemmy.ml to Programming@programming.devEnglish · 8 hours agomessage-square19fedilinkfile-text
minus-squarejustzvan@lemmy.mlOPlinkfedilinkEnglisharrow-up4·6 hours agoThanks! I fixed the file icon licensing! However, I’m not sure will pipx help. I already provide a binary Inno Setup installer. Any suggestions how to port it to Linux? I dual boot - so it would be very useful for me.
minus-squareinfeeeee@lemm.eelinkfedilinkarrow-up2·5 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.
Thanks! I fixed the file icon licensing! However, I’m not sure will pipx help. I already provide a binary Inno Setup installer. Any suggestions how to port it to Linux? I dual boot - so it would be very useful for me.
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.