From 9abcf0c943999654a5cbf4e81abd41353e9443f6 Mon Sep 17 00:00:00 2001 From: Alexander Kavanaugh Date: Wed, 25 Jan 2017 19:36:59 -0800 Subject: [PATCH] Add "license" arg to setup() call This helps for seeing at-a-glance licenses in services such as pyup.io --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 5a4e330..65b7641 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,7 @@ def get_version(root_path): setup( name='django-model-utils', version=get_version(HERE), + license="BSD", description='Django model mixins and utilities', long_description=long_description, author='Carl Meyer',