-
Notifications
You must be signed in to change notification settings - Fork 7k
Closed
Labels
Description
According to official Python documentation, setuptools is replaced in favor of pyproject.toml to define and package a Python project.
In case of this project, transitioning from setuptools to pyproject.toml: No more maintaining three files: requirements-dev.txt, setup.cfg and setup.py, but one file, pyproject.toml where everything is stored.
This means easier maintenance
faif, Mehak549 and grimley517