You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently use setup.py and setup.cfg to specify the project metadata. This includes requirements which are scatter in apt.txt, requirements.txt, and tox.ini.
The Python community selected pyproject.toml as a standard way of specifying project metadata, removing the need for all these files. All the project metadata should go in this file.
Other modern packaging and dependency management projects, like Python Poetry, only support the more declarative way of using a pyproject.toml file.
Expected behavior
Use pyproject.toml as the one file for managing project metadata
The text was updated successfully, but these errors were encountered:
Problem Description
apt.txt
,requirements.txt
, andtox.ini
.Expected behavior
pyproject.toml
as the one file for managing project metadataThe text was updated successfully, but these errors were encountered: