8 lines
237 B
Python
8 lines
237 B
Python
class Config:
|
|
DAT_TOP_FOLDER = "./dat_files"
|
|
ASC_TOP_FOLDER = "./asc_files"
|
|
COMBINED_FOLDER = "./combined_files"
|
|
ZONE_FOLDER = "./zone_inputs"
|
|
|
|
delete_dat_after_processing = True
|
|
delete_asc_after_processing = True |