-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 1.83 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
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyaegis"
version = "0.3.0"
description = "Advanced Python Static Application Security Testing (SAST) Engine"
readme = "README.md"
authors = [
{ name = "Open Source Community", email = "maintainers@pyaegis.dev" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Security",
"Topic :: Software Development :: Quality Assurance",
]
requires-python = ">=3.8"
license = "MIT"
keywords = ["security", "sast", "static-analysis", "taint-analysis", "vulnerability"]
dependencies = [
"pyyaml>=6.0.1",
]
[project.urls]
Homepage = "https://github.com/mnbplus/PyAegis"
Repository = "https://github.com/mnbplus/PyAegis"
Issues = "https://github.com/mnbplus/PyAegis/issues"
Changelog = "https://github.com/mnbplus/PyAegis/blob/main/CHANGELOG.md"
[project.optional-dependencies]
ai = [
"openai>=1.0.0",
]
mcp = [
"mcp>=1.0.0",
]
debt = [
"radon>=6.0.0",
"sqlite-vec>=0.1.6",
]
rag = [
"sqlite-vec>=0.1.6",
]
dev = [
"openai>=1.0.0",
"radon>=6.0.0",
"sqlite-vec>=0.1.6",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.9.1",
"flake8>=6.1.0",
"pre-commit>=3.4.0",
"tox>=4.11.0",
"mypy>=1.5.1",
"mkdocs-material>=9.4.0",
]
[project.scripts]
pyaegis = "pyaegis.cli:main"
# Explicit package discovery to avoid setuptools failing on extra top-level dirs
# (e.g. the generated "site/" docs folder).
[tool.setuptools]
packages = ["pyaegis", "pyaegis.core", "pyaegis.frameworks", "pyaegis.integrations", "pyaegis.intel", "pyaegis.modules", "pyaegis.rules"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311']