From 8bbea254efa62eb239566ccdd26325dfbab046de Mon Sep 17 00:00:00 2001 From: fireblocks_dx_team Date: Tue, 2 Jul 2024 11:13:41 +0000 Subject: [PATCH] Generated SDK #7647 --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index d1b349d..f0a9f52 100644 --- a/setup.py +++ b/setup.py @@ -13,6 +13,7 @@ """ # noqa: E501 +import re from setuptools import setup, find_packages # noqa: H301 # To install the library, run the following @@ -35,6 +36,7 @@ with open("README.md", "r", encoding="utf-8") as f: long_description = f.read() + long_description = re.sub(r'(?<=\()docs/', 'https://github.com/fireblocks/py-sdk/tree/master' + '/docs/', long_description) setup( name=NAME,