From 3adc1e44125dc42e04568a5da5f7a7a2af3909df Mon Sep 17 00:00:00 2001 From: Michael McGeagh Date: Wed, 25 Nov 2020 14:23:08 +0000 Subject: MLBEDSW-3457 Merge README and PYPI Instead of maintaining two almost identical readme files, have setup.py read in the canonical README.md and modify it to replace the links accordingly. Signed-off-by: Michael McGeagh Change-Id: Ia27cd48f3c945b3fac892ab1784ce394119968ac --- setup.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 35284114..f5f82bd0 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ # limitations under the License. # Description: # Packaging for the Vela compiler +import re from os import path from setuptools import Extension @@ -23,8 +24,14 @@ from setuptools import setup # Read the contents of README.md file this_directory = path.abspath(path.dirname(__file__)) -with open(path.join(this_directory, "PYPI.md"), encoding="utf-8") as f: +with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: long_description = f.read() + # Replace local Markdown links with URLs + tag = "2.0.0" + url = f"https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ethos-u-vela/+/refs/tags/{tag}/" + for markdown in set(re.findall(r"\(.+\.md\)", long_description)): + link = f"({url}{markdown[1:-1]})" + long_description = long_description.replace(markdown, link) mlw_module = Extension( "ethosu.mlw_codec", -- cgit v1.2.1