
... according to the following warning from setuptools. SetuptoolsDeprecationWarning: License classifiers are deprecated. ******************************************************************************** Please consider removing the following classifiers in favor of a SPDX license expression: License :: OSI Approved :: Apache Software License See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#license for details. ******************************************************************************** Change-Id: I0fb6ebc923f3b3d02917e4b38ec1ac14daf9a958
46 lines
1.6 KiB
INI
46 lines
1.6 KiB
INI
[metadata]
|
|
name = sushy
|
|
summary = Sushy is a small Python library to communicate with Redfish based systems
|
|
description_file =
|
|
README.rst
|
|
license = Apache-2.0
|
|
author = OpenStack
|
|
author_email = openstack-discuss@lists.openstack.org
|
|
home_page = https://docs.openstack.org/sushy/latest/
|
|
python_requires = >=3.9
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.9
|
|
Programming Language :: Python :: 3.10
|
|
Programming Language :: Python :: 3.11
|
|
Programming Language :: Python :: 3.12
|
|
|
|
[files]
|
|
packages =
|
|
sushy
|
|
|
|
[entry_points]
|
|
sushy.resources.manager.oems =
|
|
dell = sushy.oem.dell.resources.manager.manager:get_extension
|
|
sushy.resources.storage_controller.oems =
|
|
dell = sushy.oem.dell.resources.system.storage.controller:get_extension
|
|
sushy.resources.system.oems =
|
|
contoso = sushy.resources.oem.fake:get_extension
|
|
dell = sushy.oem.dell.resources.system.system:get_extension
|
|
sushy.resources.task.oems =
|
|
dell = sushy.oem.dell.resources.taskservice.task:get_extension
|
|
|
|
[codespell]
|
|
quiet-level = 4
|
|
# Words to ignore:
|
|
# assertIn: used in unit testing
|
|
ignore-words-list = assertIn
|
|
skip = AUTHORS,ChangeLog,*.pyc,*.inv,*.svg,*.png,*.sample,./doc/build/*,./api-ref/build/*,./releasenotes/build/*,./api-ref/build/*,./build/*
|