-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.05 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
[project]
name = "readwise-reader-cli"
version = "0.0.2"
description = "Engage with your Readwise Reader library through your command-line."
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"api",
"readwise",
"cli",
"python",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"click >= 8.1.3",
"python-dateutil",
"requests",
"beautifulsoup4",
"python-dotenv",
"xdg-base-dirs",
"rich",
"pydantic",
]
[dependency-groups]
test = [
"pytest",
"ruff",
]
[project.scripts]
rw-cli = "readwise_reader_cli.__main__:cli"
[build-system]
requires = ["uv_build>=0.8.14,<0.9.0"]
build-backend = "uv_build"