-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
69 lines (58 loc) · 2.09 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
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[project]
name = "acetone-nnet"
version = "0.4.dev1"
requires-python = ">=3.10, <3.12"
authors = [
{ name="Yanis AIT-AISSA", email="[email protected]"},
{ name="Thomas CARLE", email="[email protected]" },
{ name="Iryna DE ALBUQUERQUE SILVA", email="[email protected]" },
{ name="Adrien GAUFFRIAU", email="[email protected]" },
{ name="Benjamin LESAGE", email="[email protected]"},
{ name="Claire PAGETTI", email="[email protected]" },
]
description = "Predictable programming framework for ML applications in safety-critical systems."
readme = "README.md"
license = {file = "LICENSE.txt"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: C",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy==1.23.5",
"numpyencoder==0.3.0",
"onnx==1.14.0",
"tensorflow==2.12.0",
"pystache==0.6.5",
"onnxruntime==1.18.1"
]
[project.optional-dependencies]
dev = ["ruff", "mypy"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
acetone_nnet = ["templates/**.tpl",
"templates/normalization/*.tpl",
"templates/memory_layout/*.tpl",
"templates/layers/*.tpl",
"templates/layers/Resize/*.tpl",
"templates/layers/Pad/*.tpl",
"templates/layers/Gemm/*.tpl",
"templates/layers/Conv/*.tpl"]
[project.scripts]
acetone_generate = "acetone_nnet.cli.generate:acetone_generate"
acetone_compare = "acetone_nnet.cli.compare:acetone_compare"
[project.urls]
Repository = "https://github.com/onera/acetone/"
"Bug Tracker" = "https://github.com/onera/acetone/issues"