-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.28 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "mediathequeroubaix"
version = "1.5.0"
description = "Client for the library of Roubaix (Médiathèque Roubaix)"
authors = [
{name = "Thomas Queste", email = "[email protected]"}
]
license = {file = "LICENSE.txt"}
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
requires-python = ">=3.12"
dependencies = [
"pydantic-settings>=2.6.1",
"pydantic>=2.9.2",
"requests>=2.32.3",
"returns>=0.23.0",
"rich>=13.9.4",
"typer>=0.12.5",
]
[project.urls]
Changelog = "https://github.com/tomsquest/mediathequeroubaix.py/blob/master/CHANGELOG.md"
Releases = "https://github.com/tomsquest/mediathequeroubaix.py/releases"
Repository = "https://github.com/tomsquest/mediathequeroubaix.py"
[project.scripts]
mediathequeroubaix = "mediathequeroubaix.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pre-commit>=4.0.1",
"pytest>=8.3.3",
"requests-mock>=1.12.1",
"types-requests>=2.32.0.20241016",
]
[tool.mypy]
plugins = "pydantic.mypy"
ignore_missing_imports = true
follow_imports = "skip"