From c4b7a4900d36cb74b5aa544864cbbd3125415bb4 Mon Sep 17 00:00:00 2001 From: timofey Date: Fri, 4 Nov 2022 04:17:02 +0000 Subject: [PATCH] transitive as extra --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 379bef4..ff78cb3 100644 --- a/setup.py +++ b/setup.py @@ -12,6 +12,10 @@ setup( install_requires=[ 'aiohttp', 'PyNaCl~=1.4.0', - 'ptvp35 @ git+https://gitea.parrrate.ru/PTV/ptvp35.git@632569a13521e6769ebe8bc4339c4f39a519be4f' - ] + ], + extras_require={ + 'full': [ + 'ptvp35 @ git+https://gitea.parrrate.ru/PTV/ptvp35.git@632569a13521e6769ebe8bc4339c4f39a519be4f', + ], + }, )