We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe.
The project is not compliant with PEP 518
Describe the solution you'd like
Being compliant. That is, specifying the pyproject.toml file to store the build system dependencies.
pyproject.toml
Describe alternatives you've considered N/A
Additional context N/A
The text was updated successfully, but these errors were encountered:
Given that:
setuptools
I see two alternatives:
Sorry, something went wrong.
Ok thanks, so leave everything as is for now.
For info, I believe a pyproject.toml file like the following should be enough to make a setuptools-based project comply with PEP518:
[build-system] requires = ['setuptools'] build_backend = 'setuptools.build_meta'
without having to make changes to the setup.py and setup.cfg files.
setup.py
setup.cfg
Example: https://github.com/pypa/setuptools/blob/c0154f47121ca107095eb52ca1462c23b7457045/pyproject.toml
marcofavorito
No branches or pull requests
Is your feature request related to a problem? Please describe.
The project is not compliant with PEP 518
Describe the solution you'd like
Being compliant. That is, specifying the
pyproject.toml
file to store the build system dependencies.Describe alternatives you've considered
N/A
Additional context
N/A
The text was updated successfully, but these errors were encountered: