-
Notifications
You must be signed in to change notification settings - Fork 58
/
pyproject.toml
56 lines (53 loc) · 1.11 KB
/
pyproject.toml
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
50
51
52
53
54
55
56
# Copyright 2023 ETH Zurich and University of Bologna.
# Solderpad Hardware License, Version 0.51, see LICENSE for details.
# SPDX-License-Identifier: SHL-0.51
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "snitch"
authors = [
{name = "Luca Colagrande", email = "colluca@iis.ee.ethz.ch"}
]
dynamic = ["version"]
dependencies = [
# Keep sorted.
"bin2coe",
"dataclasses",
"editorconfig-checker==2.3.51",
"flake8",
"gitpython",
"hjson",
"humanize",
"json5",
"jsonref",
"jsonschema",
"mako",
"matplotlib",
"mkdocs",
"mkdocs-exclude",
"mkdocs-material",
"mkdocs-include-markdown-plugin",
"mkdocs-macros-plugin",
"mkdocstrings",
"mkdocstrings-python",
"numpy",
"pandas",
"prettytable",
"progressbar2",
"psutil",
"pyelftools",
"pyflexfloat",
"pytablewriter",
"pytest",
"pyyaml",
"scikit-learn",
"tabulate",
"termcolor",
"torch",
"yamllint"
]
[tool.setuptools.package-dir]
"snitch.dnn" = "sw/dnn"
"snitch.blas" = "sw/blas"
"snitch.util" = "util"