- Query by IMDb IMDb - Query by title Remove the pytest-httpx plugin Cleanup some of the omdb.result unit tests
17 lines
372 B
TOML
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"
|