-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (56 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
65 lines (56 loc) · 1.73 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
# pyproject.toml
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "arib"
version = "0.7.4"
description = "ARIB MPEG-2 TS Closed Caption Decoding Tools"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [{ name = "John O'Neil", email = "oneil.john@gmail.com" }]
keywords = ["Japanese", "Closed Caption", "arib", "b-24", "MPEG", "TS", "PES"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio :: Conversion",
]
dependencies = [
"requests>=2.31.0",
]
[project.urls]
Homepage = "https://github.com/johnoneil/arib"
Source = "https://github.com/johnoneil/arib"
Issues = "https://github.com/johnoneil/arib/issues"
[project.entry-points."console_scripts"]
arib-ts2ass = "arib.ts2ass:main"
arib-ts2srt = "arib.ts2srt:main"
arib-ts-extract = "arib.ts_extract:main"
arib-es-extract = "arib.es_extract:main"
[tool.setuptools.packages.find]
where = ["."]
exclude = ["tests", "docs", "examples"]
[project.optional-dependencies]
dev = [
"black>=24.8.0,<25.0.0",
"pre-commit>=3.8.0,<4.0.0",
"ruff>=0.6.7,<0.7.0",
"pytest>=8.0.0,<9.0.0",
"pytest-cov>=5.0.0,<6.0.0",
]
[tool.black]
line-length = 100
target-version = ["py310"]
skip-string-normalization = false
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"] # pycodestyle/pyflakes/warnings
ignore = []