forked from WyattBlue/auto-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (59 loc) · 1.87 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=48.0.0"]
[project]
name = "auto-editor"
description = "Auto-Editor: Effort free video editing!"
readme = "README.md"
license = { text = "Unlicense" }
authors = [{ name = "WyattBlue", email = "[email protected]" }]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.22.0",
"pyav==12.0.5",
"ae-ffmpeg==1.2.*",
]
keywords = [
"video", "audio", "media", "editor", "editing",
"processing", "nonlinear", "automatic", "silence-detect",
"silence-removal", "silence-speedup", "motion-detection",
]
dynamic = ["version"]
[tool.setuptools.packages]
find = {}
[tool.setuptools.dynamic]
version = {attr = "auto_editor.__version__"}
[project.urls]
"Bug Tracker" = "https://github.com/WyattBlue/auto-editor/issues"
"Source Code" = "https://github.com/WyattBlue/auto-editor"
homepage = "https://auto-editor.com"
[project.scripts]
"auto-editor" = "auto_editor.__main__:main"
aedesc = "auto_editor.subcommands.desc:main"
aeinfo = "auto_editor.subcommands.info:main"
aesubdump = "auto_editor.subcommands.subdump:main"
aelevels = "auto_editor.subcommands.levels:main"
[tool.mypy]
warn_unused_ignores = true
warn_redundant_casts = true
extra_checks = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
strict_optional = true
strict_equality = true
python_version = "3.10"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = [
"UP", # pyupgrade
"E", # pycodestyle
"F", # Pyflakes
"W", # pycodestyle
"I", # isort
"C401", # flake8-comprehensions: unnecessary-generator-set
"C402", # flake8-comprehensions: unnecessary-generator-dict
"C403", # flake8-comprehensions: unnecessary-list-comprehension-set
"C404", # flake8-comprehensions: unnecessary-list-comprehension-dict
"C405", # flake8-comprehensions: unnecessary-literal-set
]
ignore = ["E501", "E712", "E721", "F403", "F405"]