-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (39 loc) · 939 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (39 loc) · 939 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
39
40
41
42
43
44
45
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aur_checker"
version = "1.0.1"
description = "A CLI tool to analyze Arch Linux AUR PKGBUILDs for security risks."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"typer",
"rich",
"requests",
"pydantic>=2.9.0",
"google-genai",
]
[tool.setuptools]
packages = ["ai", "cli", "core", "cache", "output", "scanner", "scoring", "features", "compat_platform"]
[project.scripts]
aur_checker = "cli.root:app"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true
[tool.ruff]
line-length = 120
target-version = "py310"