-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
51 lines (46 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61.0", "setuptools-scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "openmv"
dynamic = ["version"]
description = "OpenMV Camera Protocol V2 - Python library and CLI"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [
{name = "OpenMV, LLC", email = "info@openmv.io"}
]
keywords = ["openmv", "camera", "machine-vision", "embedded", "micropython"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Software Development :: Embedded Systems",
]
dependencies = [
"pyserial>=3.5",
"numpy>=1.20.0",
"pygame>=2.0.0",
"pyelftools"
]
[project.scripts]
openmv = "openmv.cli:main"
[project.urls]
Homepage = "https://openmv.io"
Documentation = "https://docs.openmv.io"
Repository = "https://github.com/openmv/openmv-python"
Issues = "https://github.com/openmv/openmv-python/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
version_scheme = "no-guess-dev"