From e1155879baeedc2b262ceefcc46b7a7b0457245a Mon Sep 17 00:00:00 2001 From: Alexander Kavanaugh Date: Wed, 25 Jan 2017 18:59:42 -0800 Subject: [PATCH 1/2] Add license to setup.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This makes it easy to see the license at-a-glance from services such as pyup.io --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 8adfbd41..021a27b5 100644 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", + "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Topic :: Software Development :: Libraries", "Topic :: Utilities", From 5cd76d3c17f27c6e9109bcebe90ab260fbea19e5 Mon Sep 17 00:00:00 2001 From: Alexander Kavanaugh Date: Wed, 25 Jan 2017 19:35:01 -0800 Subject: [PATCH 2/2] =?UTF-8?q?added=20licence=C2=A0arg=20as=20well?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 021a27b5..531256ba 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,7 @@ author="Sean Bleier", author_email="sebleier@gmail.com", version="1.7.1", + license="BSD", packages=["redis_cache", "redis_cache.backends"], description="Redis Cache Backend for Django", install_requires=['redis>=2.10.3'],