cm0002@lemmy.world to Python@programming.dev · 3 months agoPython now has a standard package lock file format – though winning full adoption will be a challengedevclass.comexternal-linkmessage-square15fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkPython now has a standard package lock file format – though winning full adoption will be a challengedevclass.comcm0002@lemmy.world to Python@programming.dev · 3 months agomessage-square15fedilink
minus-squareEager Eagle@lemmy.worldlinkfedilinkEnglisharrow-up0·3 months agoHave you tried hatch? I don’t know why people are still bothering with setuptools for new projects.
minus-squarelogging_strict@programming.devlinkfedilinkarrow-up0·3 months agoFrom the hatch docs, not seeing where it discusses publishing to alternative package warehouses.
minus-squareEager Eagle@lemmy.worldlinkfedilinkEnglisharrow-up0·edit-23 months agoAFAIK setuptools and hatch are for building. Publishing is a different process. You can try uv for publishing, but idk if it supports publishing to alternatives to PyPI.
Have you tried hatch?
I don’t know why people are still bothering with setuptools for new projects.
From the hatch docs, not seeing where it discusses publishing to alternative package warehouses.
AFAIK setuptools and hatch are for building. Publishing is a different process. You can try
uv
for publishing, but idk if it supports publishing to alternatives to PyPI.