-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (55 loc) · 2.14 KB
/
pyproject.toml
File metadata and controls
68 lines (55 loc) · 2.14 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
[build-system]
requires = ["pyoz"]
build-backend = "pyoz.backend"
[project]
name = "liburing"
readme = "README.md"
license = "CC0-1.0"
version = "2026.3.30"
authors = [{name="Ritesh"}]
keywords = ["python", "socket", "async", "cython", "file", "python3", "io", "syscall", "futex", "statx",
"io-uring", "uring", "liburing"]
requires-python = ">=3.10"
license-files = ["LICENSE.txt"]
description = "Liburing is Python + Zig wrapper around C Liburing, which is a helper to setup and tear-down io_uring instances."
classifiers = ["Topic :: Software Development",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"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",
"Development Status :: 2 - Pre-Alpha"]
# 1 - Planning
# 2 - Pre-Alpha
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
# 6 - Mature
# 7 - Inactive
[project.urls]
Homepage = "https://github.com/YoSTEALTH/Liburing"
Issues = "https://github.com/YoSTEALTH/Liburing/issues"
[project.optional-dependencies]
test = ["pytest"]
[tool.ruff]
line-length = 120
[tool.pyoz]
abi3 = true
# Path to your Zig source file
module-path = "src/liburing/root.zig"
# Native module name (underscore prefix for package layout)
module-name = "liburing"
# Python package directory to include in the wheel
py-packages = ["liburing"]
# Optimization level for release builds: "Debug", "ReleaseSafe", "ReleaseFast", "ReleaseSmall"
optimize = "ReleaseSafe"
# Strip debug symbols in release builds
# strip = true
# File extensions to include from py-packages (default: .py only)
# Use ["*"] to include all files
include-ext = ["py", "zig"]
# Linux platform tag for wheel builds (default: "linux_x86_64" or "linux_aarch64")
# Use manylinux tags only if building in a manylinux container
linux-platform-tag = "manylinux_2_17_x86_64"