-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
91 lines (81 loc) · 3.41 KB
/
Copy pathsetup.py
File metadata and controls
91 lines (81 loc) · 3.41 KB
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
85
86
87
88
89
90
91
from codecs import open
from os import path
from setuptools import setup, find_packages
__version__ = '1.1.464'
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='ebattat@redhat.com, pragchau@redhat.com',
url='https://github.com/redhat-performance/cloud-governance',
license="Apache License 2.0",
python_requires='>=3.10',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14'
],
zip_safe=False,
# Find all packages (__init__.py)
packages=find_packages(include=['cloud_governance', 'cloud_governance.*']),
install_requires=[
'aiohttp==3.13.3', # 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.42.89',
'botocore==1.42.89',
'elasticsearch==8.17.0', # ecoeng ES 8.8.0 server
'opensearch-py==3.2.0', # intlab OpenSearch 3.2.0 server (includes DSL)
'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.41.0', # google cloud cost
'google-cloud-billing==1.19.0', # google cloud cost
'ibm-cloud-sdk-core==3.24.4',
'ibm-cos-sdk==2.16.1',
'ibm-platform-services==0.75.0', # IBM Usage reports
'ibm-schematics==1.0.1',
'ibm-vpc==0.33.0',
'myst-parser==1.0.0', # readthedocs
'numpy<=1.26.4',
'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 python3-devel openldap-devel gcc
'protobuf==5.29.6', # google-cloud transitive dep
'pytz', # timezone handling (azure cost management, opensearch)
'requests==2.33.1', # rest api & lambda
'retry==0.9.2',
'setuptools', # CI: setuptools<82 for IBM sdist builds
'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==2.6.3' # required by jira
],
setup_requires=['pytest', 'pytest-runner', 'wheel', 'coverage'],
include_package_data=True,
# dependency_links=[]
)