-
Notifications
You must be signed in to change notification settings - Fork 804
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (67 loc) · 2.18 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tchMaterial-parser"
version = "4.2"
description = "国家中小学智慧教育平台 资源下载工具"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE", "licenses/*.txt"]
authors = [{name = "肥宅水水呀"}, {name = "晨叶梦春", email = "wuziqian211@126.com"}]
dependencies = [
"pillow>=10,<13",
"psutil>=5.9,<8",
"pypdf>=5,<7",
"requests>=2.31,<3",
"sv-ttk>=2.6,<3",
"pywin32>=306; sys_platform == 'win32'",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Topic :: Education",
"Topic :: Utilities",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/happycola233/tchMaterial-parser"
Repository = "https://github.com/happycola233/tchMaterial-parser"
Issues = "https://github.com/happycola233/tchMaterial-parser/issues"
[project.scripts]
"tchmaterial-parser" = "tchmaterial_parser.app:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
tchmaterial_parser = ["assets/*.png"]
[tool.black]
line-length = 120
target-version = ["py310"]
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-q"
testpaths = ["tests"]