-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 771 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 771 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
[project]
name = "notebooklm-skill"
version = "0.1.0"
description = "Claude Code skill for source-grounded NotebookLM research from uploaded documents"
requires-python = ">=3.10"
dependencies = [
"patchright==1.61.2",
"python-dotenv==1.2.2",
]
[dependency-groups]
dev = [
"pytest>=9.1.1",
"ruff==0.16.0",
]
[tool.pytest.ini_options]
pythonpath = ["scripts"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
# ruff 0.16 expanded the default rule set from 59 to 413 rules (see
# https://astral.sh/blog/ruff-v0.16.0). Pin to the pre-0.16 default
# (E4, E7, E9, F) so a ruff version bump doesn't silently widen what
# this repo enforces. Revisit deliberately if we want the wider set.
select = ["E4", "E7", "E9", "F"]