-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (53 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (53 loc) · 1.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=61.0"]
# build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[project]
name = "acetone-nnet"
version = "1.0.1"
requires-python = ">=3.10"
authors = [
{ name="Yanis AIT-AISSA", email="Yanis.AIT-AISSA@student.isae-supaero.fr"},
{ name="Thomas CARLE", email="Thomas.Carle@irit.fr" },
{ name="Iryna DE ALBUQUERQUE SILVA", email="Iryna.De_Albuquerque_Silva@onera.fr" },
{ name="Adrien GAUFFRIAU", email="Adrien.Gauffriau@airbus.com" },
{ name="Benjamin LESAGE", email="benjamin.lesage@onera.fr"},
{ name="Claire PAGETTI", email="Claire.Pagetti@onera.fr" },
{ name="Nicolas VALOT", email="nicolas.valot@airbus.com" },
]
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",
"numpyencoder",
"onnx",
"tensorflow; python_version <= '3.11'",
"pystache",
"onnxruntime",
"traits~=7.0",
]
[project.optional-dependencies]
dev = ["ruff", "mypy"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
acetone_nnet = ["templates/**/*.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"