I'm trying to build a wheel using the PDM tool, however when I build the package, external dependencies (eg semver) are not included. This means whoever uses my tool, will need to install these dependencies as well. Is there a way to package the external dependencies together with my package using PDM?
lang-py
requirement.txt? Have you triedpdm add <dependency>(see PEP508 to format dependencies manually if you want)pyproject.tomland indeed i add them withpdm addhowever, when I dopdm build, the dist file don't contain those dependencies