99with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
1010 long_description = fh .read ()
1111
12-
1312def get_install_requires ():
1413 requirements = []
15- with open ("requirements-minimal.txt" , "r" , encoding = "utf-8" ) as fh :
14+ with open ("requirements-minimal.txt" , "r" , encoding = "utf-8" ) as fh :
1615 for line in fh .readlines ():
1716 stripped_line = line .strip ()
1817 if stripped_line == "" or stripped_line .startswith ("#" ):
1918 continue
2019 requirements .append (stripped_line )
2120 return requirements
2221
23-
2422setuptools .setup (name = "volatility3" ,
2523 description = "Memory forensics framework" ,
2624 version = constants .PACKAGE_VERSION ,
@@ -36,7 +34,7 @@ def get_install_requires():
3634 "Documentation" : "https://volatility3.readthedocs.io/" ,
3735 "Source Code" : "https://github.com/volatilityfoundation/volatility3" ,
3836 },
39- python_requires = '>=3.7 .0' ,
37+ python_requires = '>=3.6 .0' ,
4038 include_package_data = True ,
4139 exclude_package_data = {
4240 '' : ['development' , 'development.*' ],
0 commit comments