-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (49 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (49 loc) · 1.65 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "inquirer_console"
version = "1.1.0"
description = "Elegant interactive command-line interface tool library, Python implementation of Inquirer.js"
keywords = ["cli", "interactive", "inquirer", "prompt", "command-line", "tui", "console"]
readme = "README.md"
requires-python = ">=3"
license = { text = "Apache-2.0" }
authors = [
{ name = "Eusen", email = "179530591@qq.com" }
]
maintainers = [
{ name = "Eusen", email = "179530591@qq.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
]
dependencies = []
[dependency-groups]
dev = [
"pytest>=4.6.11",
]
[project.urls]
Homepage = "https://github.com/Eusen/inquirer_console"
Documentation = "https://github.com/Eusen/inquirer_console#readme"
"Bug Tracker" = "https://github.com/Eusen/inquirer_console/issues"
"Release notes" = "https://github.com/Eusen/inquirer_console/releases"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.setuptools]
include-package-data = true
packages = [
"inquirer_console",
"inquirer_console.prompts",
"inquirer_console.utils",
]