Skip to content

Instantly share code, notes, and snippets.

@2xyo
Created October 17, 2019 06:34
Show Gist options
  • Save 2xyo/e0778025dbccf6a01e834e08c7bcf4e4 to your computer and use it in GitHub Desktop.
Save 2xyo/e0778025dbccf6a01e834e08c7bcf4e4 to your computer and use it in GitHub Desktop.
PyPi volatility3 and volumetric
import setuptools
setuptools.setup(
name="volatility3",
version="0.0.2",
author="volatilityfoundation",
author_email="[email protected]",
description="Volatility 3: The volatile memory extraction framework. DUMMY PACKAGE. DO NOT USE.",
long_description="This is a dummy package. The official project website is available at https://github.com/volatilityfoundation/volatility3",
url="https://github.com/volatilityfoundation/volatility3",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.5.3',
)
import setuptools
setuptools.setup(
name="volumetric",
version="0.0.2",
author="volatilityfoundation",
author_email="[email protected]",
description="Volumetric is a web-based GUI for the volatility3 library. DUMMY PACKAGE. DO NOT USE.",
long_description="This is a dummy package. The official project website is available at https://github.com/volatilityfoundation/volumetric",
url="https://github.com/volatilityfoundation/volumetric",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.5.3',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment