This repository contains two independent projects for packing schedule optimization.
packing-schedule-example/
├── project1/ # First independent project
│ ├── src/ # Source code
│ ├── examples/ # Example scripts
│ └── tests/ # Test files
├── project2/ # Second independent project
│ ├── src/ # Source code
│ ├── examples/ # Example scripts
│ └── tests/ # Test files
└── requirements.txt # Shared dependencies
See project1/README.md for details.
See project2/README.md for details.
- Create a virtual environment:
python -m venv venv- Activate the virtual environment:
- Windows:
venv\Scripts\activate - Unix/macOS:
source venv/bin/activate
- Install dependencies:
pip install -r requirements.txtEach project is independent and can be developed separately. Navigate to the respective project directory for specific instructions.