Skip to content

Commit

Permalink
Add py.typed
Browse files Browse the repository at this point in the history
  • Loading branch information
myakove committed Jan 8, 2025
1 parent 0e153dd commit cf31a59
Showing 1 changed file with 30 additions and 30 deletions.
60 changes: 30 additions & 30 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[tool.pytest.ini_options]
markers = [
"incremental: Mark tests as incremental",
"kubevirt: Mark tests as kubevirt tests"
"kubevirt: Mark tests as kubevirt tests",
]
addopts = [
"--pdbcls=IPython.terminal.debugger:TerminalPdb",
"--cov-config=pyproject.toml",
"--cov-report=html",
"--cov-report=term",
"--cov=ocp_resources"
"--cov=ocp_resources",
]

[tool.coverage.run]
omit = [ "tests/*" ]
omit = ["tests/*"]

[tool.coverage.report]
skip_empty = true
Expand All @@ -26,19 +26,19 @@ 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]
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true

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

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

[project]
requires-python = ">=3.9"
Expand All @@ -47,10 +47,10 @@ version = "11.0.15"
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 @@ -70,34 +70,34 @@ dependencies = [
"ruff>=0.6.9",
"testcontainers>=4.9.0",
"timeout-sampler>=0.0.46",
"xmltodict>=0.13.0"
"xmltodict>=0.13.0",
]

[[project.authors]]
name = "Meni Yakove"
email = "myakove@gmail.com"
[[project.authors]]
name = "Meni Yakove"
email = "myakove@gmail.com"

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

[[project.maintainers]]
name = "Meni Yakove"
email = "myakove@gmail.com"
[[project.maintainers]]
name = "Meni Yakove"
email = "myakove@gmail.com"

[[project.maintainers]]
name = "Ruth Netser"
email = "rnetser@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.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"
[project.scripts]
class-generator = "class_generator.class_generator:main"

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

0 comments on commit cf31a59

Please sign in to comment.