Feat: Support for other python package tools and not assuming setup.py
is present
#114
Labels
type: enhancement
New feature or request
setup.py
is present
#114
Describe Request:
The command
python/dist
assumes the presence of asetup.py
however since PEP-621
pyproject.toml
is the preferred way to package python projects.I suggest a bit of tooling is created to identify which configuration file is in use for a project and not assume a file which is not the standard (even if it is the de facto standard).
Python docs also mention using the
build
module to generate distribution archives insteadpip install build && python -m build
Examples:
Assuming the existence of
setup.py
leads to errors for projects that do not include itSupporting Documentation Links:
The text was updated successfully, but these errors were encountered: