-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.53 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
[project]
name = "vodesfunc"
version = "1.11.0"
description = "Vodes' random Vapoursynth Functions."
authors = [{ name = "Vodes", email = "vodes.imp@gmail.com" }]
dependencies = [
"Vapoursynth>=67",
"vsmuxtools>=0.3.0",
"vsjetpack>=0.7.0",
"jetpytools>=1.2.3",
"packaging>=23.2"
]
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.12"
readme = "README.md"
license = "MPL-2.0"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[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", "E501", "RUF022"]
extend-select = ["F", "E", "RUF"]
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
[tool.uv.sources]
muxtools = { git = "https://github.com/Jaded-Encoding-Thaumaturgy/muxtools.git" }
vsmuxtools = { git = "https://github.com/Jaded-Encoding-Thaumaturgy/vs-muxtools.git" }
vsjetpack = { git = "https://github.com/Jaded-Encoding-Thaumaturgy/vs-jetpack.git" }