-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.29 KB
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
52
53
54
55
56
57
[project]
name = "docbinder_oss"
version = "0.1.2"
description = "DocBinder Open Source Shared Library"
readme = "README.md"
authors = [
{ name = "Paolo Leonard", email = "paolo@snappylab.dev" },
{ name = "Christophe Beke", email = "christophe@snappylab.dev" }
]
requires-python = ">=3.11"
dependencies = [
"pydantic-settings>=2.9.1",
"pydantic[email]>=2.11.5",
"google-api-python-client>=2.171.0",
"google-auth-oauthlib>=1.2.2",
"pydantic>=2.11.5",
"pyyaml>=6.0.2",
"typer>=0.16.0",
"rich>=14.0.0",
]
[project.scripts]
docbinder = "docbinder_oss.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/docbinder_oss"]
include = ["src/docbinder_oss/**"]
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.14",
"pre-commit>=4.2.0",
"pytest>=8.4.0",
"tox>=4.26.0",
"tox-uv>=1.26.0",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.ruff]
line-length = 125
[tool.ruff.lint]
# Add the `line-too-long` rule to the enforced rule set. By default, Ruff omits rules that
# overlap with the use of a formatter, like Black, but we can override this behavior by
# explicitly adding the rule.
extend-select = ["E501"]