Skip to content

Commit

Permalink
pyproject: add tool.setuptools.data-files
Browse files Browse the repository at this point in the history
  • Loading branch information
rgonzalezfluendo authored and mdimopoulos committed Jul 3, 2024
1 parent 8d891eb commit d557aad
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,37 @@ classifiers = [
[tool.setuptools]
packages = ["fluster", "fluster.decoders"]

[tool.setuptools.data-files]
"share/fluster/test_suites/aac" = [
"test_suites/aac/ISO_IEC_13818-4_2004.json",
"test_suites/aac/ISO_IEC_14496-26_2010.json"
]
"share/fluster/test_suites/av1" = [
"test_suites/av1/AV1-TEST-VECTORS.json",
"test_suites/av1/CHROMIUM-10bit-AV1-TEST-VECTORS.json",
"test_suites/av1/CHROMIUM-8bit-AV1-TEST-VECTORS.json"
]
"share/fluster/test_suites/h264" = [
"test_suites/h264/JVT-AVC_V1.json",
"test_suites/h264/JVT-FR-EXT.json"
]
"share/fluster/test_suites/h265" = [
"test_suites/h265/JCT-VC-HEVC-V1.json",
"test_suites/h265/JCT-VC-MV-HEVC.json",
"test_suites/h265/JCT-VC-RExt.json",
"test_suites/h265/JCT-VC-SCC.json"
]
"share/fluster/test_suites/h266" = [
"test_suites/h266/JVET-VVC_draft6.json",
]
"share/fluster/test_suites/vp8" = [
"test_suites/vp8/VP8-TEST-VECTORS.json",
]
"share/fluster/test_suites/vp9" = [
"test_suites/vp9/VP9-TEST-VECTORS-HIGH.json",
"test_suites/vp9/VP9-TEST-VECTORS.json"
]

[project.optional-dependencies]
dev = [
"black",
Expand Down

0 comments on commit d557aad

Please sign in to comment.