Index

s3-bsync / master

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
829 May 2022 20:528e1ba55Bring repository up to dateJosh Stockin184G

Blob @ s3-bsync / src / meta.py

application/x-python1019 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
13major = 0
14minor = 1
15patch = 0
16
17# Consolidated information for setup.py and other scripts
18package_info = {
19 "version_major": major,
20 "version_minor": minor,
21 "version_patch": patch,
22 "version_string": f"{major}.{minor}.{patch}",
23 "name": "s3-bsync",
24 "description": "Bidirectional syncing tool to sync local filesystem directories with S3 buckets.",
25 "license": "MIT License",
26 "author": "Joshua Stockin",
27 "author_email": "josh@joshstock.in",
28 "url": "https://git.joshstock.in/s3-bsync",
29 "download_url": "https://git.joshstock.in/s3-bsync.git",
30}
31