-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 769 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 769 Bytes
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
from setuptools import setup
url = "https://github.com/jic-dtool/dtool-azure"
version = "0.7.1"
readme = open('README.rst').read()
setup(
name="dtool-azure",
packages=["dtool_azure"],
version=version,
description="Add Azure dataset support to dtool",
long_description=readme,
include_package_data=True,
author="Matthew Hartley",
author_email="Matthew.Hartley@jic.ac.uk",
url=url,
install_requires=[
"dtoolcore>=3.17",
"azure-storage-blob==2.1.0",
"azure-storage-common==2.1.0"
],
entry_points={
"dtool.storage_brokers": [
"AzureStorageBroker=dtool_azure.storagebroker:AzureStorageBroker",
],
},
download_url="{}/tarball/{}".format(url, version),
license="MIT"
)