-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 970 Bytes
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 970 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
45
46
47
48
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "binge-docs"
version = "0.1.0"
description = "Stream official documentation as speech from your terminal."
readme = "README.md"
requires-python = ">=3.10,<3.14"
license = { text = "MIT" }
authors = [
{ name = "QueryPlanner" },
]
dependencies = [
"beautifulsoup4>=4.13,<5",
"httpx>=0.28,<1",
"kokoro-onnx>=0.5,<1",
"platformdirs>=4.3,<5",
"questionary>=2.1,<3",
"rich>=14,<15",
"sounddevice>=0.5,<1",
"typer>=0.16,<1",
]
[project.scripts]
binge-docs = "binge_docs.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["binge_docs"]
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
[dependency-groups]
dev = [
"ruff>=0.12,<1",
"pytest>=9.1.0",
"pytest-cov>=7.1.0",
]
[tool.pytest.ini_options]
addopts = "--cov=binge_docs --cov-branch --cov-fail-under=100"
testpaths = ["tests"]