diff --git a/KdTree.cabal b/KdTree.cabal
--- a/KdTree.cabal
+++ b/KdTree.cabal
@@ -3,33 +3,39 @@
 -- 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
-  Build-depends: QuickCheck
+Test-suite KdTreeTest
+  Type:             exitcode-stdio-1.0
+  Main-is:          KdTreeTest.hs
+  Default-language: Haskell2010
+  other-modules:    Data.Trees.KdTree
 
+  Build-depends:    base >= 4.8 && < 5
+                  , QuickCheck
diff --git a/KdTreeTest.hs b/KdTreeTest.hs
--- a/KdTreeTest.hs
+++ b/KdTreeTest.hs
@@ -60,5 +60,6 @@
     Kd.allSubtreesAreValid $ tree `Kd.remove` pKill
     where tree = Kd.fromList points
 
+return []
 main = $quickCheckAll
 
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c)2011, Issac Trotts
+Copyright (c)2011, 2017, Issac Trotts & Contributors
 
 All rights reserved.
 
