-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1306 from volatilityfoundation/release/v2.8.0
Release/v2.8.0
- Loading branch information
Showing
97 changed files
with
11,208 additions
and
661 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
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
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
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
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 |
---|---|---|
|
@@ -27,6 +27,7 @@ config*.json | |
# Pyinstaller files | ||
build | ||
dist | ||
*.egg-info | ||
|
||
# Environments | ||
.env | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[project] | ||
name = "volatility3" | ||
description = "Memory forensics framework" | ||
keywords = ["volatility", "memory", "forensics", "framework", "windows", "linux", "volshell"] | ||
readme = "README.md" | ||
authors = [ | ||
{ name = "Volatility Foundation", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.7.3" | ||
license = { text = "VSL" } | ||
dynamic = ["dependencies", "optional-dependencies", "version"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/volatilityfoundation/volatility3/" | ||
"Bug Tracker" = "https://github.com/volatilityfoundation/volatility3/issues" | ||
Documentation = "https://volatility3.readthedocs.io/" | ||
"Source Code" = "https://github.com/volatilityfoundation/volatility3" | ||
|
||
[project.scripts] | ||
vol = "volatility3.cli:main" | ||
volshell = "volatility3.cli.volshell:main" | ||
|
||
[tool.setuptools.dynamic] | ||
version = { attr = "volatility3.framework.constants._version.PACKAGE_VERSION" } | ||
dependencies = { file = "requirements-minimal.txt" } | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["volatility3*"] | ||
|
||
[build-system] | ||
requires = ["setuptools>=68"] | ||
build-backend = "setuptools.build_meta" |
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
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 |
---|---|---|
|
@@ -4,50 +4,21 @@ | |
|
||
import setuptools | ||
|
||
from volatility3.framework import constants | ||
|
||
with open("README.md", "r", encoding="utf-8") as fh: | ||
long_description = fh.read() | ||
|
||
|
||
def get_install_requires(): | ||
def get_requires(filename): | ||
requirements = [] | ||
with open("requirements-minimal.txt", "r", encoding="utf-8") as fh: | ||
with open(filename, "r", encoding="utf-8") as fh: | ||
for line in fh.readlines(): | ||
stripped_line = line.strip() | ||
if stripped_line == "" or stripped_line.startswith("#"): | ||
if stripped_line == "" or stripped_line.startswith(("#", "-r")): | ||
continue | ||
requirements.append(stripped_line) | ||
return requirements | ||
|
||
|
||
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://github.com/volatilityfoundation/volatility3/", | ||
project_urls={ | ||
"Bug Tracker": "https://github.com/volatilityfoundation/volatility3/issues", | ||
"Documentation": "https://volatility3.readthedocs.io/", | ||
"Source Code": "https://github.com/volatilityfoundation/volatility3", | ||
}, | ||
packages=setuptools.find_namespace_packages( | ||
include=["volatility3", "volatility3.*"] | ||
), | ||
package_dir={"volatility3": "volatility3"}, | ||
python_requires=">=3.7.0", | ||
include_package_data=True, | ||
entry_points={ | ||
"console_scripts": [ | ||
"vol = volatility3.cli:main", | ||
"volshell = volatility3.cli.volshell:main", | ||
], | ||
extras_require={ | ||
"dev": get_requires("requirements-dev.txt"), | ||
"full": get_requires("requirements.txt"), | ||
}, | ||
install_requires=get_install_requires(), | ||
) |
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
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
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
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
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
Oops, something went wrong.