JdeRobot / RoboticsApplicationManager

Robotic applications lifecycle management
3 stars 13 forks source link

Added requirements.txt file for dependency management #130

Open Surajpatra700 opened 7 months ago

Surajpatra700 commented 7 months ago

Added requirements.txt file to our project. This file had explicitly listed all the external Python libraries our project depends on, along with their required versions.

Benefits of requirements.txt file:

Improved Reproducibility: Makes it easier to recreate the project's environment on different machines by ensuring everyone installs the same dependencies.

Enhanced Dependency Management: Provides a clear overview of project dependencies and simplifies dependency updates in the future.

Reduced Conflicts: Helps avoid compatibility issues that might arise from using different versions of libraries.