forked from pulp-platform/Deeploy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# SPDX-FileCopyrightText: 2023 ETH Zurich and University of Bologna
#
# SPDX-License-Identifier: Apache-2.0
[project]
name = "deeploy-pulp"
version = "0.2.1"
description = "Deeploy - DNN Compiler for Heterogeneous SoCs"
authors = [
{ name="Victor Jung", email="jungvi@iis.ee.ethz.ch" },
{ name="Philip Wiese", email="wiesep@iis.ee.ethz.ch" },
{ name="Luka Macan", email="luka.macan@unibo.it" },
{ name="Moritz Scherer", email="scheremo@iis.ee.ethz.ch" },
]
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
'protobuf==4.23.3',
'numpy<2.0.0',
'onnx',
'onnxruntime',
'onnx-graphsurgeon>=0.5.8',
'mako',
'argparse',
'toml',
'ortools',
'plotly',
'coloredlogs',
'pytest',
'pytest-xdist',
]
[project.urls]
Homepage = "https://github.com/pulp-platform/Deeploy"
Issues = "https://github.com/pulp-platform/Deeploy/issues"
[build-system]
requires = [
"setuptools>=42",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["Deeploy*"]
exclude = ["DeeployTest*"]