-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (47 loc) · 1.29 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
[project]
name = "vodesfunc"
version = "1.7.0"
description = "Vodes' random Vapoursynth Functions."
authors = [{ name = "Vodes", email = "[email protected]" }]
dependencies = [
"Vapoursynth>=61",
"vsscale>=2.0.0",
"vsrgtools>=1.6.1",
"vskernels>=3.0.1",
"vstools>=3.0.0",
"vsmasktools>=1.2.0",
"vsmuxtools>=0.2.0"
]
classifiers = [
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Typing :: Typed",
"Topic :: Multimedia :: Video",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
]
requires-python = ">=3.11"
readme = "README.md"
license = { text = "MPL 2.0" }
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
"Source Code" = "https://github.com/Vodes/vodesfunc"
"Contact" = "https://discord.gg/Kf94Nv6WVN"
[tool.ruff]
line-length = 150
indent-width = 4
target-version = "py311"
[tool.ruff.lint]
ignore = ["E722"]
fixable = ["F541", "F401", "E712", "E711"]
exclude = ["__init__.py"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = false