-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
61 lines (54 loc) · 1.85 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
[project]
name = "neuralspot"
version = "0.0.1"
description = "Autodeploy is an all-in-one tool for automatically deploy, testing, profiling, and package TFLite files on Ambiq EVBs."
readme = "README.md"
authors = [
{name="Ambiq AI", email="[email protected]"}
]
requires-python = ">= 3.10"
dependencies = [
"numpy>=1.21.6",
"soundfile>=0.10.3",
"pyserial~=3.5",
"pydantic-argparse~=0.9.0",
"pydantic~=1.8.2",
"joulescope>=1.1.15",
"tensorflow~=2.16.2",
"tabulate>=0.9.0",
"tqdm>=4.66.5",
"PyOgg",
"Wave~=0.0.2",
"erpc@git+https://github.com/ambiqai/erpc.git#egg=develop&subdirectory=erpc_python",
"PyYAML>=6.0.2"
]
[tool.setuptools]
packages=[
"neuralspot",
"neuralspot.rpc",
"neuralspot.rpc.GenericDataOperations_EvbToPc",
"neuralspot.rpc.GenericDataOperations_PcToEvb",
"neuralspot.tools",
"neuralspot.tools.autodeploy",
"neuralspot.tools.utils"
]
[tool.setuptools.package-dir]
neuralspot = ""
"neuralspot.rpc" = "neuralspot/ns-rpc/python/ns-rpc-genericdata"
"neuralspot.rpc.GenericDataOperations_EvbToPc" = "neuralspot/ns-rpc/python/ns-rpc-genericdata/GenericDataOperations_EvbToPc"
"neuralspot.rpc.GenericDataOperations_PcToEvb" = "neuralspot/ns-rpc/python/ns-rpc-genericdata/GenericDataOperations_PcToEvb"
"neuralspot.tools" = "tools"
"neuralspot.tools.autodeploy" = "tools/autodeploy"
"neuralspot.tools.utils" = "tools/utils"
[tool.setuptools.package-data]
neuralspot = ["tools/autodeploy/templates/**/*"]
[project.scripts]
ns_autodeploy = "neuralspot.tools.ns_autodeploy:main"
ns_perf = "neuralspot.tools.ns_perf:main"
[project.urls]
Homepage = "https://github.com/ambiqai/neuralSPOT"
Documentation = "https://ambiqai.github.io/neuralSPOT"
Repository = "https://github.com/ambiqai/neuralSPOT"
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"