-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (59 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
69 lines (59 loc) · 2.21 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
64
65
66
67
68
69
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "slick-queue-py"
dynamic = ["version"]
description = "Lock-free MPMC queue with C++ interoperability via shared memory"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Slick Quant", email = "slickquant@slickquant.com"}
]
keywords = ["queue", "lock-free", "atomic", "shared-memory", "ipc", "multiprocessing", "mpmc"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
"License :: OSI Approved :: MIT License",
"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",
"Programming Language :: C++",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
]
[project.urls]
Homepage = "https://github.com/SlickQuant/slick-queue-py"
Documentation = "https://github.com/SlickQuant/slick-queue-py#readme"
Repository = "https://github.com/SlickQuant/slick-queue-py"
"Bug Tracker" = "https://github.com/SlickQuant/slick-queue-py/issues"
[tool.setuptools]
py-modules = ["slick_queue_py", "atomic_ops"]
[tool.setuptools.dynamic]
version = {attr = "slick_queue_py.__version__"}
[tool.cibuildwheel]
# Build for CPython 3.8-3.14
build = "cp38-* cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
# Skip musllinux builds (only build manylinux for Linux)
skip = "*-musllinux_*"
# Test the wheels after building
test-command = "python -c \"import slick_queue_py; import atomic_ops; print('Import successful')\""
test-requires = []
# Build settings
build-verbosity = 1
# Platform-specific settings
[tool.cibuildwheel.linux]
archs = ["x86_64"]
# Use manylinux2014 for compatibility (RHEL 7+, Ubuntu 14.04+, Debian 8+)
manylinux-x86_64-image = "manylinux2014"
[tool.cibuildwheel.windows]
archs = ["AMD64"]
[tool.cibuildwheel.macos]
archs = ["universal2"]