[tool.poetry] name = "cip-paris-client" version = "0.1.0" description = "Client for Cinémas Indépendants Parisiens API and movie sessions." authors = ["Romain Gonçalves "] license = "MIT" readme = "README.md" packages = [{include = "cip_paris_client"}] [tool.poetry.dependencies] python = "^3.11" pydantic = "^2.1.1" httpx = "^0.24.1" mypy = "^1.4.1" selectolax = "^0.3.16" pytest = "^7.4.0" flake8 = "^6.1.0" [tool.mypy] plugins = [ "pydantic.mypy" ] follow_imports = "silent" warn_redundant_casts = true warn_unused_ignores = true disallow_any_generics = true check_untyped_defs = true no_implicit_reexport = true disallow_untyped_defs = true [tool.pydantic-mypy] init_forbid_extra = true init_typed = true warn_required_dynamic_aliases = true [tool.black] line-length = 79 [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"