From 5dae109460af3c24a20c37e2a423696025587f2e Mon Sep 17 00:00:00 2001 From: wiggin15 Date: Mon, 11 Jan 2016 17:03:40 +0200 Subject: [PATCH] Update setup.py classifiers The changelog suggests croniter supports Python 3. The classifiers are used by PyPI to recognize Python 3 compatible packages (also by caniusepython3.com and developers). --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 6bd595d..9ed09e3 100644 --- a/setup.py +++ b/setup.py @@ -39,6 +39,8 @@ setup( "License :: OSI Approved :: MIT License", "Operating System :: POSIX", "Programming Language :: Python", + "Programming Language :: Python :: 2", + "Programming Language :: Python :: 3", "Topic :: Software Development :: Libraries :: Python Modules"], packages=find_packages('src'), package_dir={'': 'src'},