Skip to content

Commit

Permalink
Refactor and move all dependencies to the 'all' extra
Browse files Browse the repository at this point in the history
  • Loading branch information
ostefano committed Mar 3, 2025
1 parent 882338f commit 2400fa2
Show file tree
Hide file tree
Showing 199 changed files with 16,489 additions and 11,462 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
run: python -m pip install poetry

- name: Install dependencies
run: poetry install --with unstable
run: poetry install -E all

- name: Build package
run: poetry build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
run: python -m pip install poetry

- name: Install dependencies
run: poetry install --with test,unstable
run: poetry install --with test -E all

- name: Build package
run: poetry build
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ USE_DOCKER ?=

prepare_docs:
@echo "Preparing documentation."
poetry install --with docs,unstable
poetry install --with docs -E all
poetry run python $(DOCS_SRC_DIR)/generate_documentation.py
mkdir -p $(DOCS_DIST_DIR)/logos
mkdir -p $(DOCS_DIST_DIR)/img
Expand Down
24 changes: 0 additions & 24 deletions documentation/mkdocs/expansion.md
Original file line number Diff line number Diff line change
Expand Up @@ -977,30 +977,6 @@ Google safe browsing expansion module
-----
#### [Google Search](https://github.com/MISP/misp-modules/tree/main/misp_modules/modules/expansion/google_search.py)
<img src=../logos/google.png height=60>
An expansion hover module to expand google search information about an URL
[[source code](https://github.com/MISP/misp-modules/tree/main/misp_modules/modules/expansion/google_search.py)]
- **features**:
>The module takes an url as input to query the Google search API. The result of the query is then return as raw text.
- **input**:
>An url attribute.
- **output**:
>Text containing the result of a Google search on the input url.
- **references**:
>https://github.com/abenassi/Google-Search-API
- **requirements**:
>The python Google Search API library
-----
#### [Google Threat Intelligence Lookup](https://github.com/MISP/misp-modules/tree/main/misp_modules/modules/expansion/google_threat_intelligence.py)
<img src=../logos/google_threat_intelligence.png height=60>
Expand Down
Loading

0 comments on commit 2400fa2

Please sign in to comment.