From 99ad104f8b7d8405e0798578c342ee1bc6127135 Mon Sep 17 00:00:00 2001 From: "Iain R. Learmonth" Date: Fri, 9 Oct 2015 21:40:39 +0100 Subject: [PATCH] Clarify copyright and licensing Many Linux and BSD-like distributions will find it easier to include this library in their packaging systems if the copyright and licensing conditions are clarified. --- LICENSE | 3 ++- README.rst | 10 +++++++--- duckduckgo.py | 7 +++++++ 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index f3e2506..cc631e0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,8 @@ BSD-style license ================= -Copyright (c) 2010, Michael Stephens +Copyright (c) 2010 Michael Stephens +Copyright (c) 2012-2013 Michael Smith All rights reserved. diff --git a/README.rst b/README.rst index 99aa8c3..486aaaf 100644 --- a/README.rst +++ b/README.rst @@ -4,12 +4,16 @@ python-duckduckgo A Python library for querying the DuckDuckGo API. -Copyright Michael Stephens , released under a BSD-style license. +Copyright (c) 2010 Michael Stephens +Copyright (c) 2012-2013 Michael Smith -Source: http://github.com/crazedpsyc/python-duckduckgo +Released under a 3-clause BSD license, see LICENSE for details. + +Latest Source: http://github.com/crazedpsyc/python-duckduckgo Original source: http://github.com/mikejs/python-duckduckgo (outdated) -This version has been forked from the original to handle some new features of the API, and switch from XML to JSON. +This version has been forked from the original to handle some new features of +the API, and switch from XML to JSON. Installation ============ diff --git a/duckduckgo.py b/duckduckgo.py index 04ed1a5..2d7f128 100755 --- a/duckduckgo.py +++ b/duckduckgo.py @@ -1,3 +1,10 @@ +# duckduckgo.py - Library for querying the DuckDuckGo API +# +# Copyright (c) 2010 Michael Stephens +# Copyright (c) 2012-2013 Michael Smith +# +# See LICENSE for terms of usage, modification and redistribution. + import urllib import urllib2 import json as j