-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 776 Bytes
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 776 Bytes
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
[project]
name = "safe-exec"
version = "0.0.4"
description = "Deobfuscate and inspect code passed into exec() and eval()"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.txt"]
authors = [{ name = "Lemonyte", email = "contact@lemonyte.com" }]
requires-python = ">=3.10"
[project.urls]
Repository = "https://github.com/lemonyte/safe-exec"
[project.scripts]
safe-exec = "safe_exec.__main__:main"
[dependency-groups]
dev = [
"prek~=0.2.22",
"pytest~=8.4.2",
"ty~=0.0.2",
]
[build-system]
requires = ["uv_build>=0.9.23"]
build-backend = "uv_build"
[tool.ruff]
src = ["src"]
exclude = ["tests/scripts/**"]
line-length = 119
[tool.ruff.lint]
select = ["ALL"]
ignore = ["A"]
[tool.ruff.lint.per-file-ignores]
"tests/**" = ["D", "T20", "S101", "S102", "S307"]