""" Azure Blob Lib setup """ from setuptools import setup setup( name="azure_blob_client", version="1.0", url="https://max-ics.earthlab.lu/gitlab/production/geocannabis--drone-analytics-2/azure-blob-lib.git", license="BSD", author="Benjamin HOURTE", author_email="benjamin.hourte@earthlab.lu", description="Library for handling blob API in azure", packages=["azure_blob_client"], zip_safe=False, keywords="azure blob api", include_package_data=True, platforms="any", install_requires=["requests", "azure-storage-blob", "azure-identity"], classifiers=[ "Environment :: Cloud", "Intended Audience :: Developers", "Programming Language :: Python" ], )