From f8b201918263d2e292e6ec3f40638ede618715bd Mon Sep 17 00:00:00 2001 From: Radostin Stoyanov Date: Mon, 19 Apr 2021 17:27:07 +0100 Subject: [PATCH] Document Python 3 support (#135) * setup: Add classifier for Python 3 Signed-off-by: Radostin Stoyanov * readme: Add Python 3 in required software Signed-off-by: Radostin Stoyanov --- README.md | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 79197c5..18e2a07 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ dataplane and is independent of OpenFlow. We also added several The following software is required to run PTF: - * Python 2.7 + * Python 2.7 or 3.x * Scapy * pypcap (optional - VLAN tests will fail without this) * tcpdump (optional - Scapy will complain if it's missing) diff --git a/setup.py b/setup.py index 4f4c63b..c09bdab 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,8 @@ 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache License', 'Natural Language :: English', - "Programming Language :: Python :: 2", + 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', ] )