blob: 244fc4edd3b15a2c074a4c408b1347e749d0dacd [file] [log] [blame]
Tim Hall79d07d22020-04-27 18:20:16 +01001# Copyright (C) 2020 Arm Limited or its affiliates. All rights reserved.
2#
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.
Tim Hall79d07d22020-04-27 18:20:16 +010016# Description:
17# Packaging for the Vela compiler
Michael McGeagh1e05afa2020-12-03 13:08:32 +000018import os
Michael McGeagh3adc1e42020-11-25 14:23:08 +000019import re
Diego Russoe8a10452020-04-21 17:39:10 +010020
21from setuptools import Extension
Diego Russoe8a10452020-04-21 17:39:10 +010022from setuptools import setup
Dwight Lidmane917cdc2021-05-12 18:58:05 +020023from setuptools.command.build_ext import build_ext
24
25
26class BuildExtension(build_ext):
27 def finalize_options(self):
28 build_ext.finalize_options(self)
29 import builtins
30
31 # tell numpy it's not in setup anymore
32 builtins.__NUMPY_SETUP__ = False
33 import numpy as np
34
35 # add the numpy headers to the mlw_codec extension
36 self.include_dirs.append(np.get_include())
37
Tim Hall79d07d22020-04-27 18:20:16 +010038
39# Read the contents of README.md file
Michael McGeagh1e05afa2020-12-03 13:08:32 +000040this_directory = os.path.abspath(os.path.dirname(__file__))
41with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
Tim Hall79d07d22020-04-27 18:20:16 +010042 long_description = f.read()
James Peet51bb3372022-02-11 12:21:44 +000043 tag = "3.3.0"
Michael McGeagh3adc1e42020-11-25 14:23:08 +000044 url = f"https://review.mlplatform.org/plugins/gitiles/ml/ethos-u/ethos-u-vela/+/refs/tags/{tag}/"
Michael McGeagh1e05afa2020-12-03 13:08:32 +000045 # Find all markdown links that match the format: [text](link)
46 for match, link in re.findall(r"(\[.+?\]\((.+?)\))", long_description):
47 # If the link is a file that exists, replace it with the web link to the file instead
48 if os.path.exists(os.path.join(this_directory, link)):
49 url_link = match.replace(link, url + link)
50 long_description = long_description.replace(match, url_link)
51 if os.getenv("ETHOSU_VELA_DEBUG"):
52 # Verify the contents of the modifications made in a markdown renderer
53 with open(os.path.join(this_directory, "PYPI.md"), "wt", encoding="utf-8") as fout:
54 fout.write(long_description)
Tim Hall79d07d22020-04-27 18:20:16 +010055
56mlw_module = Extension(
57 "ethosu.mlw_codec",
58 ["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 +020059 define_macros=[("NPY_NO_DEPRECATED_API", "NPY_1_9_API_VERSION")],
Tim Hall79d07d22020-04-27 18:20:16 +010060)
61
62setup(
63 name="ethos-u-vela",
Tim Hall1793e2f2022-01-25 18:17:10 +000064 use_scm_version=True,
Tim Halld13bd062020-11-12 23:29:25 +000065 description="Neural network model compiler for Arm Ethos-U NPUs",
Tim Hall79d07d22020-04-27 18:20:16 +010066 long_description=long_description,
67 long_description_content_type="text/markdown",
68 url="https://git.mlplatform.org/ml/ethos-u/ethos-u-vela.git/",
69 author="Arm Ltd.",
Dwight Lidmanf88771b2021-11-22 16:30:57 +010070 author_email="mlg-vela@arm.com",
Tim Hall79d07d22020-04-27 18:20:16 +010071 license="Apache License 2.0",
72 classifiers=[
Tim Halle76a5332020-06-23 09:52:07 +010073 "Development Status :: 5 - Production/Stable",
Tim Hall79d07d22020-04-27 18:20:16 +010074 "Intended Audience :: Developers",
75 "License :: OSI Approved :: Apache Software License",
76 "Operating System :: POSIX :: Linux",
Tim Hall7562bdf2021-02-25 14:28:06 +000077 "Operating System :: Microsoft :: Windows :: Windows 10",
Tim Hall79d07d22020-04-27 18:20:16 +010078 "Programming Language :: C",
79 "Programming Language :: Python :: 3",
Dwight Lidmanf018a682022-05-11 12:17:45 +020080 "Programming Language :: Python :: 3.7",
Tim Hall79d07d22020-04-27 18:20:16 +010081 "Topic :: Scientific/Engineering :: Artificial Intelligence",
82 "Topic :: Software Development :: Compilers",
83 ],
84 keywords=["ethos-u", "vela compiler", "tflite", "npu"],
James Peeta8c00392021-07-15 13:38:57 +010085 packages=[
86 "ethosu.vela",
87 "ethosu.vela.ethos_u55_regs",
88 "ethosu.vela.tflite",
89 "ethosu.vela.tosa",
90 "ethosu.mlw_codec",
91 ],
Dwight Lidmanf018a682022-05-11 12:17:45 +020092 python_requires="~=3.7",
Fredrik Svedberg5b513882020-12-11 13:42:22 +010093 install_requires=[
Tim Hall42abec12021-02-04 21:31:57 +000094 "flatbuffers==1.12.0",
Fredrik Svedberg1e9ee1d2022-03-31 14:52:07 +020095 "numpy",
Fredrik Svedberg5b513882020-12-11 13:42:22 +010096 "lxml>=4.5.1",
97 ],
Tim Hall79d07d22020-04-27 18:20:16 +010098 entry_points={"console_scripts": ["vela = ethosu.vela.vela:main"]},
Louis Verhaardd7002522021-01-20 17:23:54 +010099 ext_modules=[mlw_module],
Jonas Ohlsson845e2322022-03-01 12:39:55 +0100100 cmdclass={"build_ext": BuildExtension}, # type: ignore[dict-item]
Fredrik Svedberg1e9ee1d2022-03-31 14:52:07 +0200101 setup_requires=["numpy", "setuptools_scm"],
Tim Hall79d07d22020-04-27 18:20:16 +0100102)