Skip to content

Commit a7c27c8

Browse files
authored
Update setup.py to require pcapy-ng
Changed setup.py install_requires list to replace the now unsupported pcapy library with pcapy-ng. Also increased Dshell version number and required Python version.
1 parent db3ba5e commit a7c27c8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
setup(
44
name="Dshell",
5-
version="3.2.1",
5+
version="3.2.2",
66
author="USArmyResearchLab",
77
description="An extensible network forensic analysis framework",
88
url="https://github.com/USArmyResearchLab/Dshell",
9-
python_requires='>=3.6',
9+
python_requires='>=3.8',
1010
packages=find_packages(),
1111
package_data={
1212
"dshell": ["data/dshellrc", "data/GeoIP/readme.txt"],
@@ -20,7 +20,7 @@
2020
],
2121
install_requires=[
2222
"geoip2",
23-
"pcapy",
23+
"pcapy-ng",
2424
"pypacker",
2525
"pyopenssl",
2626
"elasticsearch",

0 commit comments

Comments
 (0)