forked from release-engineering/cloudimg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (31 loc) · 1009 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
from setuptools import setup, find_packages
setup(
name='cloudimg',
version='1.14.0',
author='Alex Misstear',
author_email='[email protected]',
description=('Services for building and releasing products in cloud '
'environments'),
license='GPLv3',
url='https://github.com/release-engineering/cloudimg',
packages=find_packages(),
python_requires=">=3.6",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
install_requires=[
'azure-storage-blob',
'azure-mgmt-storage',
'attrs',
'boto3',
'monotonic; python_version < \'3.3\'',
'requests',
"tenacity",
]
)