-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (32 loc) · 904 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
from setuptools import setup
url = "https://github.com/jic-dtool/dtool-s3"
version = "0.14.1"
readme = open('README.rst').read()
setup(
name="dtool-s3",
packages=["dtool_s3"],
version=version,
description="Add S3 support to dtool",
long_description=readme,
include_package_data=True,
# Package will be released using Tjelvar's PyPi credentials.
author="Tjelvar Olsson",
author_email="[email protected]",
# author="Matthew Hartley", # NOQA
# author_email="[email protected]", # NOQA
url=url,
download_url="{}/tarball/{}".format(url, version),
install_requires=[
"click",
"dtoolcore>=3.17",
"dtool_cli",
"boto3",
"packaging",
],
entry_points={
"dtool.storage_brokers": [
"S3StorageBroker=dtool_s3.storagebroker:S3StorageBroker",
],
},
license="MIT"
)