Skip to content

Commit

Permalink
Add a description (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
msm-code authored May 19, 2021
1 parent d0cc5b4 commit 5147f2d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM python:3.7
WORKDIR /app/service
COPY ./requirements.txt ./requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY ./README.md ./README.md
COPY ./karton ./karton
COPY ./setup.py ./setup.py
RUN pip install .
Expand Down
2 changes: 1 addition & 1 deletion karton/yaramatcher/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.0"
__version__ = "1.1.1"
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
name="karton-yaramatcher",
version=version_info["__version__"],
description="File and analysis artifacts yara matcher for Karton framework",
url="https://github.com/CERT-Polska/karton-yaramatcher/",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
namespace_packages=["karton"],
packages=["karton.yaramatcher"],
install_requires=open("requirements.txt").read().splitlines(),
Expand Down

0 comments on commit 5147f2d

Please sign in to comment.