mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-17 20:35:40 +02:00
32 lines
1.0 KiB
Python
32 lines
1.0 KiB
Python
import setuptools
|
|
|
|
from volatility.framework import constants
|
|
|
|
setuptools.setup(
|
|
name = "volatility",
|
|
description = "Memory forensics framework",
|
|
version = constants.PACKAGE_VERSION,
|
|
license = "VCLA",
|
|
keywords = "volatility memory forensics framework windows linux volshell",
|
|
author = "Volatility Foundation",
|
|
author_email = "volatility@volatilityfoundation.org",
|
|
url = "https://volatilityfoundation.org/volatility/",
|
|
project_urls = {
|
|
"Bug Tracker": "https://github.com/volatilityfoundation/volatility3/issues",
|
|
"Documentation": "https://volatilityfoundation.org/volatility/docs/",
|
|
"Source Code": "https://github.com/volatilityfoundation/volatility3",
|
|
},
|
|
|
|
include_package_data = True,
|
|
exclude_package_data = {'': ['development', 'development.*'],
|
|
'development': ['*']},
|
|
packages = setuptools.find_packages(exclude = ["developement", "development.*"]),
|
|
scripts = [
|
|
"vol.py",
|
|
"volshell.py"
|
|
],
|
|
install_requires = [
|
|
"pefile"
|
|
],
|
|
)
|