Re: [Slackbuilds-users] Package a pip only module

2023-01-14 Thread fourtysixandtwo
Hi Tonus, You need to check the pyproject.toml build-system section to figure out which new method is needed. In this case you need to add 3 deps and the following lines instead of the setup.py one. #add to REQUIRES python3-build python3-installer wheel #to the slackbuild python3 -m build

[Slackbuilds-users] Package a pip only module

2023-01-14 Thread Tonus
Hi everybody, I'm looking on a satisfying process to package pytest-asyncio (https://github.com/pytest-dev/pytest-asyncio). I'm a bit stuck since there's no setup.py I'm used to in the sources. Could someone kindly point me in some direction ? Even a SlackBuild achieving similar task ? Many