From 392ec9dc70f6b04fcd07269954158c4349ff2731 Mon Sep 17 00:00:00 2001 From: cclauss Date: Sun, 16 Oct 2016 06:03:35 +0200 Subject: [PATCH] License is MIT, not BSD Added Python 3.5 and 3.6 trove classifieds for PyPI. --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 54521390..7fb9539e 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='Sanic', version="0.1.0", url='http://github.com/channelcat/sanic/', - license='BSD', + license='MIT', author='Channel Cat', author_email='channelcat@gmail.com', description='A microframework based on uvloop, httptools, and learnings of flask', @@ -21,5 +21,8 @@ setup( classifiers=[ 'Development Status :: 1 - Alpha', 'Environment :: Web Environment', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', ], )