-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 787 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(name='spongeblob',
version='0.1.1',
description='Spongeblob: A wrapper library for various cloud storage',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/helpshift/spongeblob.py',
license='MIT License',
packages=find_packages(),
install_requires=['azure-storage-blob==1.1.0',
'boto3==1.7.12',
'tenacity==4.10.0'],
tests_require=['pytest',
'pytest-docker'],
test_suite='pytest'
)