From b73e1e3d7f46f04a099f235889953340ba8b6001 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Tue, 18 Jul 2023 13:56:04 +0000 Subject: [PATCH] pyproject: set readme context type --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1e73090f..a28e244c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,6 +18,7 @@ authors = [ {name = "Mike Hunhoff", email = "michael.hunhoff@mandiant.com"}, ] description = "The FLARE team's open-source tool to identify capabilities in executable files." +readme = {file = "README.md", content-type = "text/markdown"} license = {file = "LICENSE.txt"} requires-python = ">=3.8" keywords = ["malware analysis", "reverse engineering", "capability detection", "software behaviors", "capa", "FLARE"] @@ -50,11 +51,10 @@ dependencies = [ "pydantic==1.10.9", "protobuf==4.23.4", ] -dynamic = ["version", "readme"] +dynamic = ["version"] [tool.setuptools.dynamic] version = {attr = "capa.version.__version__"} -readme = {file = "README.md"} [tool.setuptools] packages = ["capa"]