-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.26 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
46
47
48
[project]
name = "richparser"
version = "1.0.1"
description = "RichParser - A beautiful Rich-based CLI wrapper for argparse with subcommand support, sectioned help, and styled output"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"rich>=14.0.0",
]
license = { text = "MIT" }
authors = [
{ name = "D. Sanjai Kumar", email = "bughunterz0047@gmail.com" }
]
keywords = [
"cli",
"argparse",
"rich",
"terminal",
"pretty-cli",
"devtools",
"argparse-wrapper",
"command-line",
"python-tools"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"
]
[project.urls]
Homepage = "https://github.com/RevoltSecurities/richparser"
Repository = "https://github.com/RevoltSecurities/richparser"
Documentation = "https://github.com/RevoltSecurities/richparser#readme"
Tracker = "https://github.com/RevoltSecurities/richparser/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"