-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 929 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 929 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "selecta"
version = "0.2.2"
license = {file = "LICENSE.txt"}
authors = [
{name="Thomas Schüßler", email="vindolin@gmail.com" },
]
dependencies = [
"urwid >= 2.2.0",
]
description = "Interactively select an entry from your bash/zsh history."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console :: Curses",
"Programming Language :: Python :: 3",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux"]
keywords = [
"bash", "zsh", "curses", "history"
]
[project.urls]
"Homepage" = "https://github.com/vindolin/selecta"
"Changelog" = "https://github.com/vindolin/selecta/blob/master/CHANGELOG.md"
[project.scripts]
selecta = "selecta:main"
selecta_add_keybinding = "selecta.commands.selecta_add_keybinding:main"