Files
omdb/pyproject.toml
Nettika 300c7d7763 Write API wrapper class
- Query by IMDb IMDb
- Query by title

Remove the pytest-httpx plugin

Cleanup some of the omdb.result unit tests
2024-05-06 12:42:20 -07:00

17 lines
372 B
TOML

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "omdb"
version = "0.1.0"
description = "OMDb API wrapper for the HTTPX client."
requires-python = ">= 3.12"
dependencies = ["httpx"]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov"]
[tool.pytest.ini_options]
addopts = "--cov=omdb --cov-report term-missing"