-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (34 loc) · 1013 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""
Boto S3 Router install script
"""
from setuptools import setup, find_packages
from pathlib import Path
import os
NAME = "boto-s3-router"
this_directory = Path(__file__).parent
LONG_DESCRIPTION = (this_directory / "README.md").read_text()
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [
"boto3",
"fnmatch2",
]
setup(
name=NAME,
version=os.getenv('VERSION', '0.0.1'),
description="Provides a Boto3-like client routing requests to multiple S3 clients",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author="Treeverse",
author_email="[email protected]",
url="https://github.com/treeverse/boto-s3-router",
keywords=["boto", "boto3", "lakeFS", "minio", "AWS", "s3", "router"],
python_requires=">=3.6",
install_requires=REQUIRES,
packages=find_packages(exclude="tests"),
include_package_data=True,
)