mirror of
https://github.com/yt-dlp/ejs.git
synced 2026-06-13 00:32:11 +00:00
Implement support for 3.9+
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,4 +1,3 @@
|
||||
/dist
|
||||
*.py[cd]
|
||||
/yt_dlp_jsc_deno/dist
|
||||
/yt_dlp_jsc_deno/__about__.py
|
||||
/yt_dlp_jsc_deno/*.js
|
||||
|
||||
@@ -7,7 +7,7 @@ name = "yt-dlp-jsc-deno"
|
||||
version = "0.0.1"
|
||||
description = "JavaScript Challenge Provider for yt-dlp using Deno"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.8"
|
||||
requires-python = ">=3.9"
|
||||
license = "Unlicense"
|
||||
keywords = []
|
||||
authors = [
|
||||
@@ -34,10 +34,11 @@ Issues = "https://github.com/yt-dlp/yt-dlp-jsc-deno/issues"
|
||||
Source = "https://github.com/yt-dlp/yt-dlp-jsc-deno"
|
||||
|
||||
[[tool.hatch.build.hooks.build-scripts.scripts]]
|
||||
work_dir = "dist"
|
||||
out_dir = "yt_dlp_jsc_deno"
|
||||
commands = [
|
||||
"deno task bundle",
|
||||
]
|
||||
artifacts = [
|
||||
"dist/jsc-deno.js",
|
||||
"jsc-deno.js",
|
||||
]
|
||||
|
||||
@@ -3,7 +3,7 @@ import importlib.metadata
|
||||
|
||||
import yt_dlp_jsc_deno
|
||||
|
||||
_name = "dist/jsc-deno.js"
|
||||
_name = "jsc-deno.js"
|
||||
|
||||
version = importlib.metadata.version(yt_dlp_jsc_deno.__name__)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user