Index

s3-bsync / dac3807

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
518 Oct 2021 20:59dac3807Create install script; set up source directoryJosh Stockin1290G

Blob @ s3-bsync / setup.py

application/x-python1018 bytesdownload raw
1#!/usr/bin/env python3
2# s3-bsync Copyright (c) 2021 Joshua Stockin
3# <https://joshstock.in>
4# <https://git.joshstock.in/s3-bsync>
5#
6# This software is licensed and distributed under the terms of the MIT License.
7# See the MIT License in the LICENSE file of this project's root folder.
8#
9# This comment block and its contents, including this disclaimer, MUST be
10# preserved in all copies or distributions of this software's source.
11
12import sys
13from setuptools import setup
14
15setup(
16 name="s3-bsync",
17 version="0.1.0",
18 description="Bidirectional syncing tool to sync local filesystem directories with S3 buckets.",
19 license="MIT License",
20 author="Joshua Stockin",
21 author_email="josh@joshstock.in",
22 url="https://git.joshstock.in/s3-bsync",
23 download_url="https://git.joshstock.in/s3-bsync.git",
24 package_dir={"s3_bsync": "src"},
25 packages=["s3_bsync", "s3_bsync.classes"],
26 entry_points={
27 "console_scripts": [
28 "s3-bsync = s3_bsync.__main__:main"
29 ]
30 }
31)
32