From 7cc772163f2ec00d5962991a62a1cea7f8e780e3 Mon Sep 17 00:00:00 2001 From: boyska Date: Mon, 29 Aug 2016 20:31:17 +0200 Subject: [PATCH] [PY3]: state python3-only compatibility in setuptools --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dc90bf0..a185ba3 100644 --- a/setup.py +++ b/setup.py @@ -81,5 +81,9 @@ setup(name='larigira', 'static = larigira.audioform_static:staticaudio_receive', 'script = larigira.audioform_script:scriptaudio_receive', ], - } + }, + classifiers=[ + "License :: OSI Approved :: GNU Affero General Public License v3", + "Programming Language :: Python :: 3", + ] )