-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (32 loc) · 1.05 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cheatshh"
version = "1.1.1"
description = "Interactive CLI for managing command line cheatsheets, written in shell script."
authors = ["Anirudh Gupta"]
readme = "Pypi_README.md"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Topic :: System :: Shells",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX",
"Operating System :: MacOS",
]
homepage = "https://github.com/AnirudhG07/cheatshh"
keywords=["cheatsheet", "cheat", "command-line", "CLI", "shell-script"]
[tool.poetry.dependencies]
python = "^3.9"
fuzzyfinder = "^2.0.0"
whiptail = "^0.2.0"
setuptools = "^70.1.0"
fzf-bin = "^0.55.0"
[tool.poetry.dev-dependencies]
[tool.poetry.scripts]
cheatshh = "cheatshh.main:main"