Created
October 17, 2019 06:34
-
-
Save 2xyo/e0778025dbccf6a01e834e08c7bcf4e4 to your computer and use it in GitHub Desktop.
PyPi volatility3 and volumetric
This file contains hidden or 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
| 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', | |
| ) |
This file contains hidden or 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
| 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