summaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: e62c3379d8a13bd2bfec7884db6ecbb463efe0e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[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 <me@rgoncalves.se>"]
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"

[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

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
remember that computers suck.