-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 781 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 781 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
35
36
37
38
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "QuickStart-Rhy"
version = "0.7.58"
description = "A Command Line Toolbox"
authors = [
{name = "Rhythmicc", email = "rhythmlian.cn@gmail.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"requests>=2.31.0",
"urllib3>=2.0.0",
"rich>=13.3.4",
"Qpro>=0.13.0",
"inquirer-rhy>=0.1.2"
]
[project.scripts]
qs = "QuickStart_Rhy.main:main"
[tool.setuptools.packages.find]
exclude = ["Docs", "complete"]
[tool.setuptools.package-data]
QuickStart_Rhy = ["lang.json"]
[tool.qpro.config]
build = ""
entry_point = ""
executable = "python3 -m QuickStart_Rhy.main"
input_file = ""
template_root = ""
enable_complete = true