-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (48 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (48 loc) · 1.17 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
[project]
name = "nblf-queue"
version = "0.2.1"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12"
readme = "README.md"
description = "Lock-free, non-blocking MPMC queues."
authors = [
{ name = "Louis Meller", email = "louis.meller@icloud.com" },
]
keywords = ["queue", "mpmc", "atomic", "lock-free"]
[project.urls]
Repository = "https://github.com/lmeller-git/nblf-queue"
Documentation = "https://docs.rs/nblf-queue"
[dependency-groups]
dev = [
"pytest",
"pytest-cov",
"maturin >= 1.9.4",
"ruff>=0.15.15",
"pyright>=1.1.410",
"pytest-benchmark>=5.2.3",
]
[build-system]
requires = ["maturin>=1.9.4"]
build-backend = "maturin"
[tool.maturin]
manifest-path = "bindings/python/Cargo.toml"
module-name = "nblf_queue._nblf_queue_py"
python-source = "python"
profile = "release"
[tool.pytest.ini_options]
norecursedirs = ["target", ".git", ".venv"]
testpaths = ["python/tests"]
[tool.ruff]
cache-dir = ".ruff_cache"
line-length = 100
[tool.ruff.format]
skip-magic-trailing-comma = true
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402"]
[tool.pyright]
include = ["python"]
extraPaths = ["python"]
venvPath = "."
venv = ".venv"
pythonVersion = "3.14"