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 Stockin100G

Blob @ s3-bsync / setup.py

application/x-python994 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
15from src.meta import package_info
16
17setup(
18 name=package_info["name"],
19 version=package_info["version_string"],
20 description=package_info["description"],
21 license=package_info["license"],
22 author=package_info["author"],
23 author_email=package_info["author_email"],
24 url=package_info["url"],
25 download_url=package_info["download_url"],
26 package_dir={"s3_bsync": "src"},
27 packages=["s3_bsync", "s3_bsync.classes"],
28 entry_points={"console_scripts": ["s3-bsync = s3_bsync.__main__:main"]},
29)
30