Moved the builder, tagger, and setup modules into their own folders, along with constants to help provide better clarity and readability. Additionally added a missing call for the tag_for_artifcact_triggers() function

This commit is contained in:
mwisnowski 2025-01-28 10:19:44 -08:00
parent 3a5beebfe2
commit dbbc8bc66e
20 changed files with 1525 additions and 1737 deletions

View file

@ -0,0 +1,8 @@
"""Initialize the file_setup package."""
from .setup import setup, regenerate_csv_by_color
__all__ = [
'setup',
'regenerate_csv_by_color'
]