-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (57 loc) · 2.08 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (57 loc) · 2.08 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
[build-system]
requires = [
"scikit-build-core>=0.7,<0.8; python_version < '3.8'",
"scikit-build-core>=0.7; python_version >= '3.8'",
"pybind11>=2.10",
]
build-backend = "scikit_build_core.build"
[project]
name = "ztu_somemodelruntime_ez_rknn_async"
version = "0.11.0"
description = "RKNN async inference Python bindings"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.7"
dependencies = [
"numpy>=1.21,<1.22; python_version < '3.8'",
"numpy>=1.21; python_version >= '3.8'",
"typing_extensions>=4.0; python_version < '3.8'",
]
authors = [
{ name="hallo1", email="happyme5315@gmail.com" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: C++",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
"Homepage" = "https://github.com/happyme531/ztu_somemodelruntime_ez_rknn_async"
"Repository" = "https://github.com/happyme531/ztu_somemodelruntime_ez_rknn_async"
"Issues" = "https://github.com/happyme531/ztu_somemodelruntime_ez_rknn_async/issues"
[tool.scikit-build]
minimum-version = "0.7"
wheel.packages = ["python/ztu_somemodelruntime_ez_rknn_async"]
sdist.include = ["src/**", "include/**", "cmake/**", "python/**", "CMakeLists.txt", "rknn_quickconvert.py"]
sdist.exclude = ["dist/**", "wheelhouse/**", "*.whl", "*.tar.gz"]
[tool.scikit-build.cmake]
minimum-version = "3.18"
build-type = "Release"
[tool.scikit-build.cmake.define]
ZTU_SOMEMODELRUNTIME_RKNN_BUILD_PYTHON = "ON"
ZTU_SOMEMODELRUNTIME_RKNN_INSTALL_DEVEL = "OFF"
BUILD_TESTING = "OFF"
[tool.scikit-build.install]
strip = false