add zeromq package (#7)

Static build of libzmq 4.3.5 providing headers and library for
C/C++ projects that link against zmq.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Adeeb Shihadeh
2026-02-22 19:45:10 -08:00
committed by GitHub
parent cd913d0f9f
commit f67ffb5c94
4 changed files with 145 additions and 0 deletions

15
zeromq/pyproject.toml Normal file
View File

@@ -0,0 +1,15 @@
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "zeromq"
version = "4.3.5"
description = "ZeroMQ messaging library (static build)"
requires-python = ">=3.8"
[tool.setuptools.packages.find]
include = ["zeromq*"]
[tool.setuptools.package-data]
zeromq = ["install/**/*"]