Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: analyzer #205

Draft
wants to merge 26 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
755 changes: 690 additions & 65 deletions poetry.lock

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,14 @@ exitcode = "^0.1.0"
psutil = ">=5.9.4,<7.0.0"
httpx = ">=0.26,<0.28"
more-itertools = "^10.3.0"
# A list of all of the optional dependencies, some of which are included in the
# below `extras`. They can be opted into by apps.
numpy = "^1.21.4"
openpyxl = "^3.0.9"
pandas = "^1.3.4"
matplotlib = "^3.4.3"
peckto marked this conversation as resolved.
Show resolved Hide resolved
pandas-stubs = "^2.2.2.240603"
types-openpyxl = "^3.1.5.20240719"

[tool.poetry.group.dev.dependencies]
Sphinx = ">=5.2,<8.0"
Expand All @@ -67,6 +75,7 @@ reuse = "^4.0"
construct-typing = ">=0.5.2,<0.7.0"
pytest-cov = ">=4,<6"
ruff = "^0.5.0"
openpyxl-stubs = "^0.1.21"

[tool.poetry.scripts]
"gallia" = "gallia.cli:main"
Expand Down
3 changes: 3 additions & 0 deletions src/gallia/analyzer/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# SPDX-FileCopyrightText: AISEC Pentesting Team
#
# SPDX-License-Identifier: Apache-2.0
Loading