|
|
|
|
|
by benrutter
867 days ago
|
|
I think Rye and Poetry offer very similar user experiences very well, but for me what makes Rye really special is that it is just using python standard tools. If I start a new project using Poetry, every contributor will need to install and use Poetry, since it breaks a lot of Python standards and has its own syntax for things like package version dependencies. If i start using Rye, nobody else has to use Rye unless they want to, the project just has a:
- requirements-dev.lock and requirements.lock file
- pyproject.toml file
- that's it. |
|