# s3-bsync Copyright (c) 2021 Joshua Stockin # # # # This software is licensed and distributed under the terms of the MIT License. # See the MIT License in the LICENSE file of this project's root folder. # # This comment block and its contents, including this disclaimer, MUST be # preserved in all copies or distributions of this software's source. from dataclasses import dataclass __all__ = ["sync_directory_map"] @dataclass class sync_directory_map: local_path: str = "" s3_prefix: str = "" gz_compress: int = 0 recursive: bool = True gpg_enabled: bool = False gpg_email: str = ""