-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (31 loc) · 896 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
[build-system]
requires = ["setuptools >= 56"]
[project]
name = "rofi-notion"
version = "2.1.1"
authors = [
{name = "Arnaud Gissinger", email = "[email protected]"},
]
description = "Quickly create new Notion pages for your databases with rofi as GUI"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["notion.so", "notion", "rofi", "dmenu", "x11", "i3"]
license.file = "LICENSE"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"prompt-toolkit>=3",
"notion-client==2.2.1",
"python-rofi==1.0.1",
"InquirerLib==0.0.2",
"argparse==1.4.0",
"PyYAML==6.0.2",
]
[project.scripts]
rofi-notion = "rofi_notion.__main__:main"