-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
98 lines (89 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
98 lines (89 loc) · 1.95 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[project]
name = "scrollscribe"
version = "0.4.0"
description = "AI-powered documentation scraper that transforms documentation websites into clean, filtered Markdown"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "JamesN-dev" }]
dependencies = [
"crawl4ai>=0.6.3",
"beautifulsoup4>=4.12.0",
"requests>=2.26.0",
"python-dotenv>=1.0.0",
"rich>=13.9.0",
"tenacity>=8.0.0",
"typer>=0.16.0",
]
[project.scripts]
scrollscribe = "app.cli:main"
scribe = "app.cli:main"
[tool.uv]
package = true
[project.urls]
Homepage = "https://github.com/JamesN-dev/scrollscribe"
Source = "https://github.com/JamesN-dev/scrollscribe"
Issues = "https://github.com/JamesN-dev/scrollscribe/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"pytest-cov>=6.2.1",
"pytest-mock>=3.14.1",
]
[tool.pytest.ini_options]
filterwarnings = ["ignore::DeprecationWarning"]
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "v$version"
version_scheme = "pep440"
version_provider = "uv"
update_changelog_on_bump = true
major_version_zero = true
[tool.hatch.build.targets.wheel]
packages = ["app"]
[tool.basedpyright]
typeCheckingMode = "basic"
reportUnreachable = true
reportUnnecessaryTypeIgnoreComment = false
reportIgnoreCommentWithoutRule = false
reportUnusedVariable = "none"
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".ipynb_checkpoints",
".mypy_cache",
".nox",
".pants.d",
".pyenv",
".pytest_cache",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
".vscode",
"__pypackages__",
"_build",
"build",
"dist",
"node_modules",
"site-packages",
"venv",
"data",
"docs",
"logs",
"AGENTS.md",
"other-docs/",
"tests",
"archive/",
"dist/",
]
pythonVersion = "3.10"