-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (54 loc) · 1.88 KB
/
pyproject.toml
File metadata and controls
64 lines (54 loc) · 1.88 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "Annotations2Sub"
version = "2.24.0"
description = "Convert Youtube Annotations to subtitles."
readme = "README.md"
authors = [{ name = "我如天翼", email = "wrtyis@outlook.com" }]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
requires-python = ">=3.7"
keywords = ["Youtube", "Annotations", "Subtitles", "Converter"]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/USED255/Annotations2Sub"
"Bug Tracker" = "https://github.com/USED255/Annotations2Sub/issues"
[project.scripts]
Annotations2Sub = "Annotations2Sub._main:main"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]
[tool.setuptools.package-data]
"Annotations2Sub" = [
"locales/zh/LC_MESSAGES/Annotations2Sub.mo",
"locales/en/LC_MESSAGES/Annotations2Sub.mo",
]
[tool.mypy]
check_untyped_defs = true
show_traceback = true
[tool.isort]
profile = "black"
[dependency-groups]
dev = ["pytest", "pytest-cov", "mypy", "isort", "black", "build", "ipython","ipykernel"]