diff options
author | garret1317 <garret@airmail.cc> | 2025-09-14 15:40:39 +0100 |
---|---|---|
committer | garret1317 <garret@airmail.cc> | 2025-09-14 15:40:39 +0100 |
commit | 98bfe822517eacd942f8a460e00ae8a30bb8d5e3 (patch) | |
tree | 7c681712feabcd7e980279f60606a574fb2eb1cf | |
parent | 0f4d6c073de8e161014cf62eaa44cfc2fdb236dd (diff) | |
download | yt-dlp-rajiko-98bfe822517eacd942f8a460e00ae8a30bb8d5e3.tar.gz yt-dlp-rajiko-98bfe822517eacd942f8a460e00ae8a30bb8d5e3.tar.bz2 yt-dlp-rajiko-98bfe822517eacd942f8a460e00ae8a30bb8d5e3.zip |
put protobug as a full dependency so everyone who installs with pip gets it
it's pure python with no deps + trusted dev so it's fine
-rw-r--r-- | pyproject.toml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/pyproject.toml b/pyproject.toml index d92abe7..d4f6c04 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,14 +16,15 @@ classifiers = [ "Environment :: Plugins", ] +dependencies = [ + "protobug" +] + [project.urls] Homepage = "https://427738.xyz/yt-dlp-rajiko/" "Source Code" = "https://github.com/garret1317/yt-dlp-rajiko/" "Release Notes" = "https://427738.xyz/yt-dlp-rajiko/CHANGELOG.xml" -[project.optional-dependencies] -protobuf = ["protobug"] - [build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" |