From ad0db0ca7117f2ee3ed975ba9fe634ac13bd1b6f Mon Sep 17 00:00:00 2001 From: Jesse Kempf Date: Thu, 28 Sep 2017 22:03:49 -0700 Subject: [PATCH] Update maintainership --- KdTree.cabal | 20 +++++++++++--------- LICENSE | 2 +- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/KdTree.cabal b/KdTree.cabal index dad84c4..46725f3 100644 --- a/KdTree.cabal +++ b/KdTree.cabal @@ -3,31 +3,33 @@ Name: KdTree -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented. -Version: 0.2.1 +Version: 0.2.1.1 Synopsis: KdTree, for efficient search in K-dimensional point clouds. Description: This is a simple library for k-d trees in Haskell. It enables searching through collections of points in O(log N) average time, using the nearestNeighbor function. -Homepage: https://github.com/ijt/kdtree +Homepage: https://github.com/binarysunrise-io/kdtree License: BSD3 License-file: LICENSE Author: Issac Trotts -Maintainer: issac.trotts@gmail.com -Copyright: Copyright 2011, Issac Trotts -Category: Graphics +Maintainer: jesse.kempf@binarysunrise.io +Copyright: Copyright 2011, Issac Trotts & Contributors +Category: Data Mining, Data Structures, Graphics, Machine Learning Build-type: Simple -Cabal-version: >=1.6 +Cabal-version: >=1.10 Extra-source-files: README source-repository head type: git - location: git@github.com:ijt/kdtree.git + location: git@github.com:binarysunrise-io/kdtree.git Library - Exposed-modules: Data.Trees.KdTree - Build-depends: base < 5 + Default-language: Haskell2010 + Exposed-modules: Data.Trees.KdTree + Build-depends: base < 5 + , QuickCheck Executable KdTreeTest Main-is: KdTreeTest.hs diff --git a/LICENSE b/LICENSE index c0d2bf8..6dccda3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c)2011, Issac Trotts +Copyright (c)2011, 2017, Issac Trotts & Contributors All rights reserved.