openai / weak-to-strong

MIT License
2.49k stars 302 forks source link

Integrate dependencies into pyproject.toml #5

Closed EwoutH closed 9 months ago

EwoutH commented 9 months ago

This PR moves the dependency management from using a requirements.txt file to specifying dependencies directly in pyproject.toml. This change aligns with PEP 621, which recommends declaring project metadata in pyproject.toml. It simplifies dependency management and ensures consistency with modern Python packaging standards.

The README.md has also been updated to reflect the new installation instructions.

Specifying dependencies in the pyproject.toml also makes it easier to add optional dependencies in the future.

WuTheFWasThat commented 9 months ago

thanks!