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 |
|
12 | import sys |
13 | from setuptools import setup |
14 |
|
15 | from src.meta import package_info |
16 |
|
17 | setup( |
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 |
|