10 lines
311 B
Python
10 lines
311 B
Python
class Config:
|
|
DAT_TOP_FOLDER = "./dat_files"
|
|
ASC_TOP_FOLDER = "./asc_files"
|
|
CSV_TOP_FOLDER = "./csv_files"
|
|
COMBINED_FOLDER = "./combined_files"
|
|
ZONE_FOLDER = "./zone_inputs"
|
|
|
|
delete_dat_after_processing = False
|
|
delete_asc_after_processing = True
|
|
delete_csv_after_combining = True |