diff options
author | garret <garret@airmail.cc> | 2024-04-02 08:53:55 +0100 |
---|---|---|
committer | garret <garret@airmail.cc> | 2024-04-02 08:53:55 +0100 |
commit | a285500fbcf69cbedf2df5cf028abeba1108ea50 (patch) | |
tree | 90acb655fd74bdb289801855bdcca6c86ab2c899 /pyproject.toml | |
parent | 69fff170663d6e2d258edca7503b2e7897227a76 (diff) | |
download | yt-dlp-rajiko-a285500fbcf69cbedf2df5cf028abeba1108ea50.tar.gz yt-dlp-rajiko-a285500fbcf69cbedf2df5cf028abeba1108ea50.tar.bz2 yt-dlp-rajiko-a285500fbcf69cbedf2df5cf028abeba1108ea50.zip |
sort out package "building" and metadatav1.0
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index 97057d9..0b7ce66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,23 @@ +[project] +name = "yt-dlp-rajiko" +version = "1.0" +description = "improved radiko.jp extractor for yt-dlp" +authors = [ + { name="garret1317" }, +] +requires-python = ">=3.8" +dependencies = ["yt-dlp>=2023.06.22"] +classifiers = [ + "License :: OSI Approved :: Zero-Clause BSD (0BSD)", + "Environment :: Plugins", +] + +[project.urls] +Homepage = "https://427738.xyz/yt-dlp-rajiko/" + [build-system] -requires = ["setuptools"] +requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" -[tool.distutils.bdist_wheel] -universal = true +[tool.setuptools.packages.find] +include = ["yt_dlp_plugins"] |