forked from redhat-performance/cloud-governance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
84 lines (74 loc) · 3.17 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
from codecs import open
from os import path
from setuptools import setup, find_packages
__version__ = '1.1.315'
here = path.abspath(path.dirname(__file__))
if path.isfile(path.join(here, 'README.md')):
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
else:
long_description = ""
setup(
name='cloud-governance',
version=__version__,
description='Cloud Governance Tool',
long_description=long_description,
long_description_content_type='text/markdown',
author='Red Hat',
author_email='[email protected], [email protected]',
url='https://github.com/redhat-performance/cloud-governance',
license="Apache License 2.0",
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
],
zip_safe=False,
# Find all packages (__init__.py)
packages=find_packages(include=['cloud_governance', 'cloud_governance.*']),
install_requires=[
'aiohttp==3.10.2', # required by jira
'attrs==21.4.0', # readthedocs
'azure-identity==1.16.1', # azure identity
'azure-mgmt-billing==6.0.0', # azure billing management
'azure-mgmt-costmanagement==3.0.0', # azure cost management
'azure-mgmt-subscription==3.1.1', # azure subscriptions
'azure-mgmt-resource==23.0.1',
'azure-mgmt-compute==30.1.0',
'azure-mgmt-network==25.0.0',
'azure-mgmt-monitor==6.0.2',
'boto3==1.26.4', # required by c7n 0.9.14
'botocore==1.29.4', # required by c7n 0.9.14
'elasticsearch-dsl==7.4.0',
'elasticsearch==7.13.4', # opensearch 1.2.4 for elasticsearch
'google-api-python-client==2.57.0', # google drive
'google-auth-httplib2==0.1.0', # google drive
'google-auth-oauthlib==0.5.2', # google drive
'google-cloud-bigquery==3.5.0', # google cloud cost
'google-cloud-billing==1.9.1', # google cloud cost
'ibm_platform_services==0.27.0', # IBM Usage reports
'myst-parser==1.0.0', # readthedocs
'numpy<=1.26.4', # opensearch 1.2.4 for elasticsearch
'oauthlib~=3.1.1', # required by jira
'pandas', # latest: aggregate ec2/ebs cluster data
'PyAthena[Pandas]==3.0.5', # AWS Athena package
'PyGitHub==1.55', # gitleaks
'python-ldap==3.4.2', # prerequisite: sudo dnf install -y python39-devel openldap-devel gcc
'requests==2.32.2', # rest api & lambda
'retry==0.9.2',
'setuptools', # Requires for python3.12
'SoftLayer==6.0.0', # IBM SoftLayer
'sphinx-rtd-theme==1.0.0', # readthedocs
'sphinx==5.0.0', # readthedocs
'typeguard==2.13.3', # checking types
'typing==3.7.4.3',
'urllib3==1.26.19' # required by jira
],
setup_requires=['pytest', 'pytest-runner', 'wheel', 'coverage'],
include_package_data=True,
# dependency_links=[]
)