
We haven't tested this in the gate for some time. While we appear to still work under 3.8, it goes end-of-life in October 2024 and is holding us back from adding more, better typing. It's time to let it go. Change-Id: I0e1cef837febe3baa0dd145640ebc96192c0c915 Signed-off-by: Stephen Finucane <stephenfin@redhat.com> Depends-on: https://review.opendev.org/c/openstack/python-openstackclient/+/924493
50 lines
1.3 KiB
INI
50 lines
1.3 KiB
INI
[metadata]
|
|
name = openstacksdk
|
|
summary = An SDK for building applications to work with OpenStack
|
|
description_file =
|
|
README.rst
|
|
author = OpenStack
|
|
author_email = openstack-discuss@lists.openstack.org
|
|
home_page = https://docs.openstack.org/openstacksdk/
|
|
python_requires = >=3.9
|
|
classifier =
|
|
Environment :: OpenStack
|
|
Intended Audience :: Information Technology
|
|
Intended Audience :: System Administrators
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: POSIX :: Linux
|
|
Programming Language :: Python
|
|
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 =
|
|
openstack
|
|
|
|
# TODO(mordred) Move this to an OSC command before 1.0
|
|
[entry_points]
|
|
console_scripts =
|
|
openstack-inventory = openstack.cloud.cmd.inventory:main
|
|
|
|
[mypy]
|
|
show_column_numbers = true
|
|
show_error_context = true
|
|
ignore_missing_imports = true
|
|
# follow_imports = normal
|
|
follow_imports = skip
|
|
incremental = true
|
|
check_untyped_defs = true
|
|
warn_unused_ignores = false
|
|
# keep this in-sync with 'mypy.exclude' in '.pre-commit-config.yaml'
|
|
exclude = (?x)(
|
|
doc
|
|
| examples
|
|
| releasenotes
|
|
)
|
|
|
|
[mypy-openstack.tests.unit.*]
|
|
ignore_errors = true
|