From e6552a8b9e854477954b6486599b47e06544bc42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20De=20Keersmaeker?= <francois.dekeersmaeker@uclouvain.be> Date: Mon, 2 Sep 2024 10:28:01 +0200 Subject: [PATCH] Small updates --- pcap_fuzzer/__init__.py | 2 +- setup.py | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/pcap_fuzzer/__init__.py b/pcap_fuzzer/__init__.py index 512a1c0..a2d9c6f 100644 --- a/pcap_fuzzer/__init__.py +++ b/pcap_fuzzer/__init__.py @@ -1,5 +1,5 @@ """ -Initialization script for package `pcap_fuzzer`. +Initialization script for package `pcap-fuzzer`. """ from .pcap_fuzzer import fuzz_pcaps diff --git a/setup.py b/setup.py index a088a00..13a2478 100644 --- a/setup.py +++ b/setup.py @@ -14,11 +14,10 @@ setup( classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', - 'Operating System :: OS Independent', + 'Operating System :: OS Independent' ], python_requires='>=3.7', install_requires=[ - 'scapy', - ], - #test_suite='tests', + 'scapy' + ] ) -- GitLab