We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc453b commit bad253dCopy full SHA for bad253d
setup.py
@@ -6,12 +6,17 @@
6
7
from volatility3.framework import constants
8
9
+with open("README.md", "r", encoding="utf-8") as fh:
10
+ long_description = fh.read()
11
+
12
setuptools.setup(name = "volatility3",
13
description = "Memory forensics framework",
14
version = constants.PACKAGE_VERSION,
15
license = "VSL",
16
keywords = "volatility memory forensics framework windows linux volshell",
17
author = "Volatility Foundation",
18
+ long_description = long_description,
19
+ long_description_content_type = "text/markdown",
20
author_email = "[email protected]",
21
url = "https://volatilityfoundation.org/volatility/",
22
project_urls = {
0 commit comments