Skip to content

Commit 1b1e563

Browse files
add CIBW_BUILD_VERBOSITY
1 parent 650d551 commit 1b1e563

File tree

1 file changed

+21
-25
lines changed

1 file changed

+21
-25
lines changed

pyproject.toml

Lines changed: 21 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,26 @@
11
[project]
22
name = "python_ics"
33
dynamic = ["version"]
4-
authors = [
5-
{name = "David Rebbe", email = "drebbe@intrepidcs.com"},
6-
]
7-
maintainers = [
8-
{name = "David Rebbe", email = "drebbe@intrepidcs.com"},
9-
]
4+
authors = [{ name = "David Rebbe", email = "drebbe@intrepidcs.com" }]
5+
maintainers = [{ name = "David Rebbe", email = "drebbe@intrepidcs.com" }]
106
description = "Python wrapper for interfacing to IntrepidCS Hardware."
117
keywords = ["intrepidcs", "CAN", "Ethernet", "Automotive", "ICS"]
12-
readme = {file = "README.md", content-type = "text/markdown"}
8+
readme = { file = "README.md", content-type = "text/markdown" }
139
requires-python = ">=3.9"
14-
classifiers=[
15-
"Development Status :: 5 - Production/Stable",
16-
"Intended Audience :: Developers",
17-
"License :: OSI Approved :: MIT License",
18-
"Operating System :: OS Independent",
19-
"Topic :: Software Development :: Libraries :: Python Modules",
20-
"Programming Language :: Python",
21-
"Programming Language :: Python :: 3",
22-
"Programming Language :: Python :: 3.9",
23-
"Programming Language :: Python :: 3.10",
24-
"Programming Language :: Python :: 3.11",
25-
"Programming Language :: Python :: 3.12",
26-
"Programming Language :: Python :: 3.13",
27-
]
10+
classifiers = [
11+
"Development Status :: 5 - Production/Stable",
12+
"Intended Audience :: Developers",
13+
"License :: OSI Approved :: MIT License",
14+
"Operating System :: OS Independent",
15+
"Topic :: Software Development :: Libraries :: Python Modules",
16+
"Programming Language :: Python",
17+
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.9",
19+
"Programming Language :: Python :: 3.10",
20+
"Programming Language :: Python :: 3.11",
21+
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
23+
]
2824

2925
[project.urls]
3026
Homepage = "https://intrepidcs.com"
@@ -33,15 +29,15 @@ Repository = "https://github.com/intrepidcs/python_ics/"
3329
Issues = "https://github.com/intrepidcs/python_ics/issues"
3430

3531
[tool.setuptools.dynamic]
36-
version = {attr = "ics.__version__"}
32+
version = { attr = "ics.__version__" }
3733

3834
[build-system]
3935
requires = [
4036
"setuptools",
4137
"wheel",
4238
"dunamai",
4339
"hatchling",
44-
"uv-dynamic-versioning"
40+
"uv-dynamic-versioning",
4541
]
4642
build-backend = "hatchling.build"
4743

@@ -66,7 +62,7 @@ dirty = true
6662
[tool.cibuildwheel]
6763
build = "{*-win32,*-win_amd64,*-macosx_universal2,*-manylinux_x86_64,*-manylinux_aarch64}"
6864
skip = "cp36-* cp37-* pp* *-manylinux_i686 *-musllinux_*"
69-
environment = {DISTUTILS_DEBUG=1, MACOSX_DEPLOYMENT_TARGET="10.13", CIBW_ARCHS_LINUX="auto aarch64"}
65+
environment = { CIBW_BUILD_VERBOSITY = 1, DISTUTILS_DEBUG = 1, MACOSX_DEPLOYMENT_TARGET = "10.13", CIBW_ARCHS_LINUX = "auto aarch64" }
7066
before-build = "python -m pip install wheel"
7167
manylinux-x86_64-image = "quay.io/pypa/manylinux_2_28_x86_64"
7268
manylinux-aarch64-image = "quay.io/pypa/manylinux_2_28_aarch64"
@@ -96,4 +92,4 @@ force-exclude = '''
9692
| msvc
9793
| src
9894
)/
99-
'''
95+
'''

0 commit comments

Comments
 (0)