-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.39 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "macnotesapp"
version = "0.8.0"
description = "Work with Apple MacOS Notes.app from the command line. Also includes python interface for scripting Notes.app from your own python code."
authors = ["Rhet Turnbull <[email protected]>"]
license = "MIT License"
readme = "README.md"
homepage = "https://github.com/RhetTbull/macnotesapp"
repository = "https://github.com/RhetTbull/macnotesapp"
keywords = ["cli", "mac", "macos"]
[tool.poetry.dependencies]
python = ">=3.10,<3.14"
py-applescript = "^1.0.3"
click = "^8.1.2"
rich = ">=12.4.4,<=14.0.0"
markdown2 = ">=2.4.3,<3.0.0"
toml = "^0.10.2"
questionary = ">=1.10.0,<=3.0.0"
wheel = ">=0.37.1"
readability-lxml = "^0.8.1"
requests = ">=2.28.1,<3.0.0"
validators = ">=0.20.0,<1.0.0"
markdownify = ">=0.11.6,<1.0.0"
pyobjc-framework-ScriptingBridge = ">=9.0.1"
xdg-base-dirs = ">=6.0.0"
lxml-html-clean = ">=0.1.1"
lxml = ">=5.2.1,<6.0.0"
[tool.poetry.dev-dependencies]
pytest = ">=7.1.2,<=8.0.0"
cogapp = ">=3.3.0"
wheel = ">=0.37.1"
build = ">=0.8.0"
pyinstaller = ">=6.6.0"
[tool.poetry.scripts]
notes = "macnotesapp.__main__:cli_main"
[tool.poetry.group.dev.dependencies]
bump2version = "^1.0.1"
mktestdocs = ">=0.2.4"
mkdocs = ">=1.6.1"
mkdocs-click = ">=0.8.1"
mkdocstrings = ">=0.27.0"
mkdocstrings-python = ">=1.12.2"
mkdocs-material = ">=9.5.49"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"