pdm-backend
pdm-backend copied to clipboard
The build backend used by PDM that supports latest packaging standards.
The error happens when running `pdm install` in a git repo while `git` command does not work as expected but `hg` command is available. For my case, the permission of...
updates: - [github.com/astral-sh/ruff-pre-commit: v0.3.5 → v0.4.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.3.5...v0.4.3) - [github.com/pre-commit/mirrors-mypy: v1.9.0 → v1.10.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.9.0...v1.10.0)
`pdm` and `pdm-backand` are two different products, even though they related one to another closely. It was very confusing to me that during reading `pdm` documentation I have found myself...
Hi. I'm trying to wrap my head around pdm, pdm-backend and, more generally, how the hooks works and how are they actually connected. At the moment my goal is to...
Is it possible to define "extras" with dependencies + source files includes? Looking for build tool that would make modular package possible for internal tools package, would minimize the maintenance...
When installing a PDM project via `pip install -e .`, I get the following cryptic error: ``` William@DESKTOP-3H1DSBV MINGW64 ~/Projects/python/pdm-backend $ pip install -e . Obtaining file:///C://msys64/home/William/Projects/python/pdm-backend Checking if build...
When you generate an archive from a release using `git archive` (or download it from GitHub), there is no `.git` and tags are not available. However, it is possible to...
## Is your feature request related to a problem? Please describe. https://pdm-backend.fming.dev/metadata/#writing-dynamic-version-to-file suggests a procedure for writing a package version to a file. Python source code generation is also described....
# Feature suggestion ## Current state * Order of hook execution is fixed and arbitrary. Specifically, builtin hooks always execute before entry-point hooks. * The first hook method (initialize) is...
Currently the `includes` will be copied to `site-packages` as it is. For example, if I have `includes = ["path/to/foo"]`, then `path/to/foo` will appear in the `site-packages`. Can we support mapping...