-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (52 loc) · 1.63 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
[project]
name = "k230_flash"
dynamic = ["version"]
requires-python = ">=3.7"
authors = [{ name = "kendryte747" }, { email = "[email protected]" }]
maintainers = [{ name = "kendryte747" }, { email = "[email protected]" }]
readme = "README.md"
description = "Kendryte K230 Flash Tool"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: C++",
"Programming Language :: Python :: 3 :: Only",
"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",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
keywords = ["kendryte", "kflash", "k230"]
dependencies = []
[project.urls]
homepage = "https://github.com/kendryte/k230_flash"
[project.scripts]
k230_flash = "kburn.k230_flash:main"
[build-system]
requires = ["setuptools>=42", "wheel", "cmake>=3.18", "pybind11"]
build-backend = "setuptools.build_meta"
[tool.cibuildwheel]
build = ["cp38*", "cp39*", "cp310*", "cp311*", "cp312*", "cp313*"]
skip = "*musllinux*"
test-requires = "pytest"
test-command = [
"pytest {project}/tests/import"
]
[tool.cibuildwheel.windows]
archs = ["AMD64"]
[tool.cibuildwheel.linux]
archs = ["x86_64"]
before-all = [
"yum install -y libudev-devel",
]
repair-wheel-command = "LD_LIBRARY_PATH=/lib/kburn auditwheel repair -w {dest_dir} {wheel}"
[tool.cibuildwheel.macos]
archs = ["x86_64"]
before-all = [
"brew install fmt",
]