A senior developer taught me how to use a config file (with extension .cfg) to install a local python project with the command pip install -e <project path>.
How to convert this file to pyproject.toml?
Here is the setup.cfg file:
[metadata]version = 1.0[options]packages = my_projectpython_requires = >3.5zip_safe = Falseinstall_requires = tensorflow tensorflow_probability matplotlib pytest[options.extras_require]dev = pre-commit pylint snakeviz