-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (28 loc) · 936 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "readwise-to-apple-notes"
version = "0.1.0"
description = "Export Readwise highlights to Apple Notes."
authors = ["Scott Carvalho <scottcarvalho71@gmail.com>"]
license = "Apache-2.0"
readme = "README.md"
classifiers = [
"License :: OSI Approved :: Apache Software License"
]
[tool.poetry.dependencies]
python = "^3.12"
click = "^8.1.7"
readwise = "^1.1.0"
python-dotenv = "^1.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
ruff = "^0.3.2"
[tool.poetry.urls]
Homepage = "https://github.com/Scarvy/readwise-to-apple-notes"
Changelog = "https://github.com/Scarvy/readwise-to-apple-notes/releases"
Issues = "https://github.com/Scarvy/readwise-to-apple-notes/issues"
CI = "https://github.com/Scarvy/readwise-to-apple-notes/actions"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
readwise-to-apple-notes = 'readwise_to_apple_notes.cli:cli'