Skip to content

Commit

Permalink
Merge pull request MISP#824 from JakubOnderka/cleanup
Browse files Browse the repository at this point in the history
Cleanup
  • Loading branch information
Rafiot authored Feb 6, 2022
2 parents 04b29d9 + ff579e4 commit 7d7343e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,14 @@ jobs:
steps:

- uses: actions/checkout@v2
with:
submodules: recursive

- name: Set up Python ${{matrix.python-version}}
uses: actions/setup-python@v2
with:
python-version: ${{matrix.python-version}}

- name: Initialize submodules
run: git submodule update --init --recursive

- name: Install system dependencies
run: |
sudo apt install libfuzzy-dev libemail-outlook-message-perl libemail-address-perl
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip poetry
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ pip3 install pymisp
```

And there are a few optional dependencies:
* fileobjects: to create PE/ELF/Mach-o objects. **Important**: it will install pydeep, which require the system package `libfuzzy-dev`
* openioc: to import files in OpenIOC format (not really maintained).
* fileobjects: to create PE/ELF/Mach-o objects
* openioc: to import files in OpenIOC format (not really maintained)
* virustotal: to query VirusTotal and generate the appropriate objects
* docs: to generate te documentation
* pdfexport: to generate PDF reports out of MISP events
* url: to generate URL objects out of URLs with Pyfaup
* email: to generate MISP Email objects
* brotli: to use the brotli when interacting with a MISP instance
* brotli: to use the brotli compression when interacting with a MISP instance

Example:

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Python API for MISP."
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "BSD-2-Clause"
repository = "https://github.com/MISP/PyMISP"
documentation = "http://pymisp.readthedocs.io"
documentation = "https://pymisp.readthedocs.io"


readme = "README.md"
Expand Down Expand Up @@ -61,7 +61,6 @@ pyfaup = {version = "^1.2", optional = true}
chardet = {version = "^4.0", optional = true}
urllib3 = {extras = ["brotli"], version = "^1.26.7", optional = true}


[tool.poetry.extras]
fileobjects = ['python-magic', 'pydeep2', 'lief']
openioc = ['beautifulsoup4']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
maintainer='Raphaël Vinot',
url='https://github.com/MISP/PyMISP',
project_urls={
'Documentation': 'http://pymisp.readthedocs.io',
'Documentation': 'https://pymisp.readthedocs.io',
'Source': 'https://github.com/MISP/PyMISP',
'Tracker': 'https://github.com/MISP/PyMISP/issues',
},
Expand Down

0 comments on commit 7d7343e

Please sign in to comment.