-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 913 Bytes
/
Copy pathpyproject.toml
File metadata and controls
44 lines (37 loc) · 913 Bytes
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
[project]
name = "notebooklm-source-pack-builder"
version = "0.1.0"
description = "Turn documentation websites into maintained NotebookLM source packs."
readme = "README.md"
requires-python = ">=3.11"
authors = [{ name = "yElixir", email = "yelixir.dev@gmail.com" }]
dependencies = [
"httpx>=0.27",
"pydantic>=2.7",
"pyyaml>=6.0",
"typer>=0.12",
"rich>=13.7",
"beautifulsoup4>=4.12",
"trafilatura>=1.8",
]
[project.scripts]
nlm-pack = "notebooklm_source_pack_builder.cli:app"
[dependency-groups]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.5",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/notebooklm_source_pack_builder"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]