Skip to content

Commit

Permalink
Release 10.0.93
Browse files Browse the repository at this point in the history
  • Loading branch information
myakove committed Oct 8, 2024
1 parent 5512bf7 commit 44850c4
Showing 1 changed file with 36 additions and 33 deletions.
69 changes: 36 additions & 33 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.pytest.ini_options]
markers = [
"incremental: Mark tests as incremental",
"kubevirt: Mark tests as kubevirt tests",
"kubevirt: Mark tests as kubevirt tests"
]

[tool.ruff]
Expand All @@ -10,38 +10,31 @@ line-length = 120
fix = true
output-format = "grouped"

[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.ruff.format]
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]

[tool.mypy]
# TODO: enable all once we have typing in all the resources.
# check_untyped_defs = true
# disallow_any_generics = true
# disallow_incomplete_defs = true
# disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true

[tool.hatch.build.targets.wheel]
packages = [ "ocp_resources", "class_generator" ]

[tool.uv]
dev-dependencies = [ "ipdb>=0.13.13", "ipython>=8.12.3" ]

[project]
requires-python = ">=3.8"
authors = [
{ "name" = "Meni Yakove", "email" = "myakove@gmail.com" },
{ "name" = "Ruth Netser", "email" = "rnetser@gmail.com" },
]
maintainers = [
{ "name" = "Meni Yakove", "email" = "myakove@gmail.com" },
{ "name" = "Ruth Netser", "email" = "rnetser@gmail.com" },
]
name = "openshift-python-wrapper"
version = "10.0.89"
version = "10.0.93"
description = "Wrapper around https://github.com/kubernetes-client/python"
readme = "README.md"
license = "Apache-2.0"
keywords = ["Openshift", "Kubevirt", "Openshift Virtualization"]
keywords = [ "Openshift", "Kubevirt", "Openshift Virtualization" ]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Operating System :: OS Independent"
]
dependencies = [
"click>=8.1.7",
Expand All @@ -59,24 +52,34 @@ dependencies = [
"rich>=13.9.2",
"ruff>=0.6.9",
"timeout-sampler>=0.0.46",
"xmltodict>=0.13.0",
"xmltodict>=0.13.0"
]

[project.urls]
homepage = "https://github.com/RedHatQE/openshift-python-wrapper"
documentation = "https://openshift-python-wrapper.readthedocs.io/en/latest/"
Download = "https://pypi.org/project/openshift-python-wrapper/"
"Bug Tracker" = "https://github.com/RedHatQE/openshift-python-wrapper/issues"
[[project.authors]]
name = "Meni Yakove"
email = "myakove@gmail.com"

[project.scripts]
class-generator = "class_generator.class_generator:main"
[[project.authors]]
name = "Ruth Netser"
email = "rnetser@gmail.com"

[tool.hatch.build.targets.wheel]
packages = ["ocp_resources", "class_generator"]
[[project.maintainers]]
name = "Meni Yakove"
email = "myakove@gmail.com"

[[project.maintainers]]
name = "Ruth Netser"
email = "rnetser@gmail.com"

[project.urls]
homepage = "https://github.com/RedHatQE/openshift-python-wrapper"
documentation = "https://openshift-python-wrapper.readthedocs.io/en/latest/"
Download = "https://pypi.org/project/openshift-python-wrapper/"
"Bug Tracker" = "https://github.com/RedHatQE/openshift-python-wrapper/issues"

[project.scripts]
class-generator = "class_generator.class_generator:main"

[build-system]
requires = ["hatchling"]
requires = [ "hatchling" ]
build-backend = "hatchling.build"

[tool.uv]
dev-dependencies = ["ipdb>=0.13.13", "ipython>=8.12.3"]

0 comments on commit 44850c4

Please sign in to comment.