forked from happycube/ld-decode
-
Notifications
You must be signed in to change notification settings - Fork 46
/
pyproject.toml
47 lines (40 loc) · 1.39 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
[build-system]
requires = ["setuptools>=61", "setuptools_scm>=6.2", "wheel", "Cython", "numpy"]
# requires = ["setuptools>=61", "wheel", "Cython", "numpy"]
# build-backend = "setuptools.build_meta"
[project]
name = "vhs_decode"
description = "Software Decoder for raw rf captures of laserdisc, vhs and other analog video formats"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["laserdisc", "vhs", "video", "tape", "decoder"]
license = {file = "LICENSE"}
classifiers = [
"Topic :: Multimedia :: Video",
]
dependencies = [
"numpy>=1.22","numba>=0.58.1","scipy>=1.10.1","samplerate", "static-ffmpeg", "cython", "soundfile", "sounddevice", "importlib_resources >= 5.0; python_version < '3.10'", "matplotlib"
]
dynamic = ["version"]
# version = "0.2.1dev0"
[project.optional-dependencies]
hifi_gui = [ "PyQt5>=5.14.1" ]
hifi_gui_qt6 = [ "PyQt6>=6.4.2" ]
hifi_gnuradio = [ "pyzmq" ]
[project.scripts]
ld-decode = "lddecode.main:main"
vhs-decode = "vhsdecode.main:main"
cvbs-decode = "cvbsdecode.main:main"
hifi-decode = "vhsdecode.hifi.main:main"
#[console_scripts]
# TODO: These should maybe be made modules too
#ld-cut = "ld-cut"
#cx-expander = "cx-expander"
#tbc-video-export = "tbc-video-export"
[project.urls]
Homepage = "https://www.domesday86.com"
[tool.setuptools_scm]
write_to = "vhsdecode/_version.py"
local_scheme = "no-local-version"
[tool.setuptools.package-data]
vhs_decode = ["*.txt"]