forked from edgeimpulse/linux-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.15 KB
/
pyproject.toml
File metadata and controls
48 lines (41 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "edge_impulse_linux"
version = "1.2.0"
dynamic = ["readme"]
requires-python = ">=3.10"
description = "Python runner for real-time ML classification"
authors = [
{ name = "EdgeImpulse Inc.", email = "hello@edgeimpulse.com" },
]
license = { file = "LICENSE" }
keywords = ["edge-impulse", "machine-learning", "embedded", "linux"]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = []
[project.optional-dependencies]
audio = [
"numpy>=1.19.5,<3",
"pyaudio>=0.2.11,<0.3",
]
image = [
"opencv-python-headless>=4.5.1",
"psutil>=5.8.0"
]
all = [
"edge_impulse_linux[audio]",
"edge_impulse_linux[image]",
]
[project.urls]
Homepage = "https://www.edgeimpulse.com"
"Bug Tracker" = "https://github.com/edgeimpulse/linux-sdk-python/issues"
Repository = "https://github.com/edgeimpulse/linux-sdk-python"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.dynamic]
readme = { file = ["README.md"], content-type = "text/markdown" }