Index

s3-bsync / 9613f30

Bidirectional syncing tool to sync local filesystem directories with S3 buckets. (Incomplete)

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
622 Oct 2021 11:139613f30Update Python project toolsJosh Stockin1260G

Blob @ s3-bsync / src / meta.py

application/x-python958 bytesdownload raw
1# s3-bsync Copyright (c) 2021 Joshua Stockin
2# <https://joshstock.in>
3# <https://git.joshstock.in/s3-bsync>
4#
5# This software is licensed and distributed under the terms of the MIT License.
6# See the MIT License in the LICENSE file of this project's root folder.
7#
8# This comment block and its contents, including this disclaimer, MUST be
9# preserved in all copies or distributions of this software's source.
10
11__all__ = ["package_info"]
12
13# Consolidated information for setup.py and other scripts
14package_info = {
15 "version_major": 0,
16 "version_minor": 1,
17 "version_patch": 0,
18 "version_string": f"0.1.0",
19 "name": "s3-bsync",
20 "description": "Bidirectional syncing tool to sync local filesystem directories with S3 buckets.",
21 "license": "MIT License",
22 "author": "Joshua Stockin",
23 "author_email": "josh@joshstock.in",
24 "url": "https://git.joshstock.in/s3-bsync",
25 "download_url": "https://git.joshstock.in/s3-bsync.git",
26}
27