-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.37 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "ass_lint"
version = "0.1"
description = "Check ASS files for common mistakes."
authors = ["Marcin Kurczewski <dash@wind.garden>"]
license = "GPLv3"
readme = "README.md"
repository = "https://github.com/bubblesub/ass_lint"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Text Processing",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{ include = "ass_lint" },
]
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
ass-parser = "^1.0"
fonttools = "^4.28.4"
ass-renderer = "0.3"
ass-tag-parser = "^2.4"
regex = "^2021.11.10"
pyenchant = {version = "^3.2.2", optional = true}
ffms2 = {version = "^0.4.5", optional = true}
colorama = "^0.4.4"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
black = "^21.12b0"
pre-commit = "^2.16.0"
isort = "^5.10.1"
pytest-asyncio = "^0.16.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 79
py36 = true
[tool.isort]
known_third_party = ["ass_renderer", "ass_parser", "fontTools"]
known_first_party = ["ass_lint"]
multi_line_output = 3
include_trailing_comma = true