-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.09 KB
/
Copy pathpyproject.toml
File metadata and controls
45 lines (41 loc) · 1.09 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cheatshh"
version = "1.1.1"
description = "Interactive CLI for managing command line cheatsheets, written in shell script."
authors = [{ name = "Anirudh Gupta" }]
requires-python = "~=3.9"
readme = "Pypi_README.md"
keywords = [
"cheatsheet",
"cheat",
"command-line",
"CLI",
"shell-script",
]
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",
]
dependencies = [
"fuzzyfinder>=2.2.0",
"fzf-bin>=0.55.0",
"setuptools>=80.9.0",
"whiptail>=0.2",
]
[project.urls]
Homepage = "https://github.com/AnirudhG07/cheatshh"
[project.scripts]
cheatshh = "cheatshh.main:main"
[dependency-groups]
dev = []