blob: 6b7186bfb586235ab0265ce6a2dc747ff19e39df [file] [log] [blame]
Raul Farkas428a8d52023-01-16 16:52:18 +00001# SPDX-FileCopyrightText: Copyright 2020-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
Tim Hall79d07d22020-04-27 18:20:16 +01002#
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the License); you may
6# not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an AS IS BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Rickard Bolinbc6ee582022-11-04 08:24:29 +000016#
Tim Hall79d07d22020-04-27 18:20:16 +010017# Description:
18# Packaging for the Vela compiler
Michael McGeagh1e05afa2020-12-03 13:08:32 +000019import os
Michael McGeagh3adc1e42020-11-25 14:23:08 +000020import re
Diego Russoe8a10452020-04-21 17:39:10 +010021
22from setuptools import Extension
Diego Russoe8a10452020-04-21 17:39:10 +010023from setuptools import setup
Dwight Lidmane917cdc2021-05-12 18:58:05 +020024from setuptools.command.build_ext import build_ext
Raul Farkasfcda6852023-03-14 15:19:46 +000025from setuptools_scm import get_version
Dwight Lidmane917cdc2021-05-12 18:58:05 +020026
27
28class BuildExtension(build_ext):
29 def finalize_options(self):
30 build_ext.finalize_options(self)
31 import builtins
32
33 # tell numpy it's not in setup anymore
34 builtins.__NUMPY_SETUP__ = False
35 import numpy as np
36
37 # add the numpy headers to the mlw_codec extension
38 self.include_dirs.append(np.get_include())
39
Tim Hall79d07d22020-04-27 18:20:16 +010040
41# Read the contents of README.md file
Michael McGeagh1e05afa2020-12-03 13:08:32 +000042this_directory = os.path.abspath(os.path.dirname(__file__))
43with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
Tim Hall79d07d22020-04-27 18:20:16 +010044 long_description = f.read()
Raul Farkasfcda6852023-03-14 15:19:46 +000045 tag = get_version()
Michael McGeagh3adc1e42020-11-25 14:23:08 +000046 url = f"https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ethos-u-vela/+/refs/tags/{tag}/"
Michael McGeagh1e05afa2020-12-03 13:08:32 +000047 # Find all markdown links that match the format: [text](link)
48 for match, link in re.findall(r"(\[.+?\]\((.+?)\))", long_description):
49 # If the link is a file that exists, replace it with the web link to the file instead
50 if os.path.exists(os.path.join(this_directory, link)):
51 url_link = match.replace(link, url + link)
52 long_description = long_description.replace(match, url_link)
53 if os.getenv("ETHOSU_VELA_DEBUG"):
54 # Verify the contents of the modifications made in a markdown renderer
55 with open(os.path.join(this_directory, "PYPI.md"), "wt", encoding="utf-8") as fout:
56 fout.write(long_description)
Tim Hall79d07d22020-04-27 18:20:16 +010057
58mlw_module = Extension(
59 "ethosu.mlw_codec",
60 ["ethosu/mlw_codec/mlw_encode.c", "ethosu/mlw_codec/mlw_decode.c", "ethosu/mlw_codec/mlw_codecmodule.c"],
Fredrik Svedberg93d5c352021-05-11 13:51:47 +020061 define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_9_API_VERSION")],
Tim Hall79d07d22020-04-27 18:20:16 +010062)
63
64setup(
Tim Hall1793e2f2022-01-25 18:17:10 +000065 use_scm_version=True,
Tim Hall79d07d22020-04-27 18:20:16 +010066 long_description=long_description,
67 long_description_content_type="text/markdown",
Louis Verhaardd7002522021-01-20 17:23:54 +010068 ext_modules=[mlw_module],
Jonas Ohlsson845e2322022-03-01 12:39:55 +010069 cmdclass={"build_ext": BuildExtension}, # type: ignore[dict-item]
Tim Hall79d07d22020-04-27 18:20:16 +010070)