I've always fallen back to using `setup.cfg` for my projects, but it's probably time to embrace [PEP 621](https://peps.python.org/pep-0621/) and migrate to `pyproject.toml`. ### Resources - [Writing your pyproject.toml](https://packaging.python.org/en/latest/guides/writing-pyproject-toml/) - [Configuring setuptools using pyproject.toml files](https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html) - [ini2toml - Automatically translates .ini/.cfg files into TOML](https://pypi.org/project/ini2toml/)
I've always fallen back to using
setup.cfgfor my projects, but it's probably time to embrace PEP 621 and migrate topyproject.toml.Resources