-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
73 lines (65 loc) · 1.57 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
[project]
name = "noteforge-cli"
version = "0.1.0"
description = "Generate structured study notes from public course videos"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.11"
authors = [
{ name = "ztygod" },
]
keywords = [
"bilibili",
"cli",
"learning-notes",
"llm",
"subtitles",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Education",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Education",
"Topic :: Text Processing :: Markup :: Markdown",
]
dependencies = [
"cryptography>=45,<48",
"httpx>=0.28,<1",
"keyring>=25,<27",
"rich>=13,<15",
"typer>=0.12,<1",
"yt-dlp[curl-cffi]>=2026.7.4",
]
[project.urls]
Homepage = "https://github.com/ztygod/NoteForge"
Repository = "https://github.com/ztygod/NoteForge"
Issues = "https://github.com/ztygod/NoteForge/issues"
[project.scripts]
noteforge = "noteforge.cli.app:main"
[dependency-groups]
dev = [
"pre-commit>=4.6.1",
"pytest>=8,<9",
"ruff>=0.16.2",
]
[build-system]
requires = ["uv_build>=0.11.30,<0.12"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "noteforge"
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"