-
Notifications
You must be signed in to change notification settings - Fork 481
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation: Use the README.md for the long description
- Loading branch information
Showing
1 changed file
with
5 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,12 +6,17 @@ | |
|
||
from volatility3.framework import constants | ||
|
||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup(name = "volatility3", | ||
description = "Memory forensics framework", | ||
version = constants.PACKAGE_VERSION, | ||
license = "VSL", | ||
keywords = "volatility memory forensics framework windows linux volshell", | ||
author = "Volatility Foundation", | ||
long_description = long_description, | ||
long_description_content_type = "text/markdown", | ||
author_email = "[email protected]", | ||
url = "https://volatilityfoundation.org/volatility/", | ||
project_urls = { | ||
|