-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1003 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1003 Bytes
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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tinyml_modelzoo"
version = "1.4.0"
description = "TI's TinyML Model Zoo - Centralized model definitions for microcontrollers"
readme = "README.md"
requires-python = "==3.10.*"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
]
keywords = [
"artificial intelligence",
"deep learning",
"tinyml",
"microcontrollers",
"model zoo",
]
dependencies = [
"torch==2.7.1",
"PyYAML==6.0.3",
"numpy==2.2.6",
]
[[project.authors]]
name = "Texas Instruments"
email = "thonse@ti.com"
[project.license]
text = "BSD 3-Clause"
[project.urls]
Homepage = "https://github.com/TexasInstruments/tinyml-tensorlab/tree/main/tinyml-modelzoo"
"Bug Reports" = "https://e2e.ti.com/support/processors/"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["tinyml_modelzoo*"]
exclude = ["tests*"]