-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
46 lines (38 loc) · 1.02 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
[project]
name = "secretsweeper"
version = "0.0.1a1"
requires-python = ">=3.11"
license = "MIT"
license-files = ["LICENSE"]
[build-system]
requires = ["poetry-core==2.2.1", "ziggy-pydust==0.26.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "secretsweeper"
description = "Fast, in-memory secret-sanitizing CPython module written in Zig, designed for speed."
authors = ["Vitaliy Demidov <notifications.recipient@gmail.com>"]
readme = "README.md"
packages = [{ include = "secretsweeper" }]
include = [
{ path = "src/", format = "sdist" },
{ path = "secretsweeper/*.so", format = "wheel" },
"secretsweeper/*.pyi",
]
[tool.poetry.build]
script = "build.py"
[tool.poetry.dependencies]
python = "^3.11"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["F", "E", "W", "UP", "I001", "I002"]
[[tool.pydust.ext_module]]
name = "secretsweeper._core"
root = "src/core.zig"
[dependency-groups]
dev = [
"poetry>=2.2.1",
"ziggy-pydust==0.26.0",
"pytest (>=8.4.2,<9.0.0)",
"ruff (>=0.13.3,<0.14.0)"
]