Files
eveAI/scripts/find_requirements.sh
Josako a421977918 - Common library was removed one way or another
- Processor Catalog now required
2025-05-08 15:47:39 +02:00

7 lines
230 B
Bash
Executable File

#!/usr/bin/env bash
rm -fr temp_requirements/*
for component in common eveai_app eveai_api eveai_workers eveai_chat_workers eveai_entitlements eveai_beat; do
pipreqs $component/ --savepath temp_requirements/$component.txt
done