-
Notifications
You must be signed in to change notification settings - Fork 492
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 #1157 from branchvincent/full-extra
add full and dev extras
- Loading branch information
Showing
10 changed files
with
67 additions
and
60 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
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
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 = "volatility@volatilityfoundation.org" }, | ||
] | ||
requires-python = ">=3.7.0" | ||
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
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,13 @@ | ||
# We use the SemVer 2.0.0 versioning scheme | ||
VERSION_MAJOR = 2 # Number of releases of the library with a breaking change | ||
VERSION_MINOR = 7 # Number of changes that only add to the interface | ||
VERSION_PATCH = 1 # Number of changes that do not change the interface | ||
VERSION_SUFFIX = "" | ||
|
||
# TODO: At version 2.0.0, remove the symbol_shift feature | ||
|
||
PACKAGE_VERSION = ( | ||
".".join([str(x) for x in [VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH]]) | ||
+ VERSION_SUFFIX | ||
) | ||
"""The canonical version of the volatility3 package""" |
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