Server IP : 172.24.0.40 / Your IP : 216.73.216.10 Web Server : Apache System : Linux dbweb26.ust.edu.ph 4.18.0-513.5.1.el8_9.x86_64 #1 SMP Fri Sep 29 05:21:10 EDT 2023 x86_64 User : apache ( 48) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib64/python3.6/site-packages/cloud_what/ |
Upload File : |
# -*- coding: utf-8 -*- # # Copyright (c) 2021 Red Hat, Inc. # # This software is licensed to you under the GNU General Public License, # version 2 (GPLv2). There is NO WARRANTY for this software, express or # implied, including the implied warranties of MERCHANTABILITY or FITNESS # FOR A PARTICULAR PURPOSE. You should have received a copy of GPLv2 # along with this software; if not, see # http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt. # # Red Hat trademarks are not licensed under GPLv2. No permission is # granted to use or replicate Red Hat trademarks that are incorporated # in this software or its documentation. # """ Setup for cloud-what """ from setuptools import setup setup( name="cloud-what", version='1.29.14', description='Detection of public cloud provider and gathering metadata from IMDS servers', author='Jiri Hnidek', author_email='chainsaw@redhat.com', url='https://github.com/candlepin/subscription-manager/', license='GPLv2', long_description="""cloud-what enables to detect cloud provider using information provided SM BIOS. The package tries to use dmidecode and virt-what for this purpose. This package also allows to gather metadata and signature from IMDS servers provided by public cloud providers. Three cloud providers are supported at this moment: AWS, Azure and GCP.""", packages=['cloud-what'], classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: GPL License', 'License :: OSI Approved :: Python Software Foundation License', 'Operating System :: Linux', 'Programming Language :: Python', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Topic :: Software Development :: Libraries :: Python Modules', ], install_requires=['requests'], )