-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.11 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
[project]
name = "kindle-notes"
version = "0.1.0"
description = "CLI tool to sync, browse, and search Kindle highlights"
readme = "README.md"
license = "GPL-3.0-only"
requires-python = ">=3.12"
keywords = ["kindle", "highlights", "notes", "ebook"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: MacOS",
"Programming Language :: Python :: 3.12",
"Topic :: Utilities",
]
dependencies = [
"binary-cookies-parser>=2.1.2",
"click>=8.1",
# kfxlib vendored deps
"beautifulsoup4>=4.12",
"lxml>=6.0.2",
"pillow>=12.1.1",
"pypdf>=6.7.5",
# browser scraping
"playwright>=1.49",
]
[project.urls]
Repository = "https://github.com/delebedev/kindle-notes"
[project.scripts]
kn = "kn.cli:main"
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["kn*", "kfxlib*"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"ruff>=0.9",
]
[tool.ruff]
target-version = "py312"
line-length = 100
exclude = ["kfxlib/"]
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]