-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1008 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1008 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
[project]
name = "raindrip"
version = "0.1.0"
description = "raindrip: AI-friendly CLI for Raindrop.io"
authors = [
{ name = "rinvii" }
]
keywords = ["raindrop", "cli", "ai-agent", "automation", "bookmarks"]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.28.1",
"toon-format @ git+https://github.com/toon-format/toon-python.git",
"pydantic>=2.12.5",
"rich>=14.2.0",
"typer>=0.21.1",
]
[project.urls]
Homepage = "https://github.com/rinvii/raindrip"
Repository = "https://github.com/rinvii/raindrip"
Issues = "https://github.com/rinvii/raindrip/issues"
Changelog = "https://github.com/rinvii/raindrip/blob/main/CHANGELOG.md"
[project.scripts]
raindrip = "raindrip.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.metadata]
allow-direct-references = true
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-asyncio>=1.3.0",
"pytest-cov>=7.0.0",
"respx>=0.22.0",
]