From 7150522eeff61f10778c33e57d0549cc3e603609 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Sun, 23 Apr 2017 23:49:03 +0300 Subject: [PATCH] The library was tested and works with Python 3.5 and 3.6 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e15eacb..3c12a8a 100755 --- a/setup.py +++ b/setup.py @@ -2,10 +2,8 @@ try: from setuptools import setup - is_setuptools = True except ImportError: from distutils.core import setup - is_setuptools = False setup(name = "m_lib.defenc", version = "1.0.0", @@ -26,6 +24,8 @@ setup(name = "m_lib.defenc", 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Software Development :: Libraries', 'Topic :: Software Development :: Libraries :: Python Modules', ], -- 2.39.2