From 35e2bb0aa931d8caf2de0ff35b72347de85bd690 Mon Sep 17 00:00:00 2001 From: namuyang Date: Thu, 25 Jun 2020 23:00:56 +0900 Subject: [PATCH] fix: better setup.py's classifiers --- setup.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 3348aaf..e9b72e1 100644 --- a/setup.py +++ b/setup.py @@ -31,10 +31,13 @@ install_requires=install_requires, license="MIT Licence", keywords='RUDP UDP P2P hole-punching', + python_requires='>=3.6', classifiers=[ - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', + 'Typing :: Typed', + 'Topic :: Internet', + 'Topic :: System :: Networking', + 'Development Status :: 3 - Alpha', + 'Programming Language :: Python :: 3', 'License :: OSI Approved :: MIT License', ], )