-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (31 loc) · 980 Bytes
/
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 = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "wukongbaobao"
authors = [
{ name="qiqilelebaobao", email="qiqilelebaobao@163.com" },
]
readme = "README.md"
requires-python = ">=3.6"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Software Development",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English"
]
dependencies = [
"python-docx",
]
dynamic = ["version", "description"]
keywords = ["education", "math", "learn", "kids-learn", "kids-education"]
[project.urls]
Homepage = "https://github.com/qiqilelebaobao/wukongbaobao"
Issues = "https://github.com/qiqilelebaobao/wukongbaobao/issues"
Repository = "https://github.com/qiqilelebaobao/wukongbaobao"
[project.scripts]
wk = "wukongbaobao.__main__:main"