diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,29 @@
+BSD 3-Clause License
+
+Copyright (c) 2017, Tim McGilchrist
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this
+  list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+
+* Neither the name of the copyright holder nor the names of its
+  contributors may be used to endorse or promote products derived from
+  this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/Setup.hs b/Setup.hs
new file mode 100644
--- /dev/null
+++ b/Setup.hs
@@ -0,0 +1,2 @@
+import Distribution.Simple
+main = defaultMain
diff --git a/huck.cabal b/huck.cabal
new file mode 100644
--- /dev/null
+++ b/huck.cabal
@@ -0,0 +1,83 @@
+name:                  huck
+version:               0.0.1
+license:               BSD3
+license-file:          LICENSE
+author:                Tim McGilchrist <timmcgil@gmail.com>
+maintainer:            Tim McGilchrist <timmcgil@gmail.com>
+copyright:             (c) 2017 Tim McGilchrist 
+synopsis:              huck
+category:              System
+cabal-version:         >= 1.8
+build-type:            Simple
+homepage:              https://github.com/tmcgilchrist/huck
+description:
+            A Haskell TOML parsing library.
+            .
+            'Cause just like in the classic mis-adventure, Tom doesn't really pull his weight.
+            So Huck is gathering all the toml parsers and making them betterer.
+
+source-repository head
+  type: git
+  location: git://github.com/tmcgilchrist/huck.git
+
+library
+  build-depends:
+                      base                            >= 3          && < 5
+                    , classy-prelude                  == 1.3.*
+                    , containers                      >= 0.4        && < 0.6
+                    , text                            == 1.2.*
+                    , time                            >= 1.7        && < 1.9
+                    , megaparsec                      == 5.0.*
+                    , scientific                      == 0.3.*
+                    , unordered-containers            == 0.2.*
+
+  ghc-options:
+                    -Wall
+
+  hs-source-dirs:
+                    src
+
+  exposed-modules:
+                    Huck
+
+test-suite test
+  type:
+                    exitcode-stdio-1.0
+
+  main-is:
+                    test.hs
+
+  ghc-options:
+                    -Wall -threaded -O2
+
+  hs-source-dirs:
+                    test
+
+  build-depends:
+                      base                            >= 3          && < 5
+                    , classy-prelude
+                    , unordered-containers            == 0.2.*
+                    , megaparsec                      == 5.*
+                    , text
+                    , hedgehog                        >= 0.5        && < 0.6
+                    , time             
+
+
+test-suite test-io
+  type:
+                    exitcode-stdio-1.0
+
+  main-is:
+                    test-io.hs
+
+  ghc-options:
+                    -Wall -threaded -O2
+
+  hs-source-dirs:
+                    test
+
+  build-depends:
+                      base                            >= 3          && < 5
+                    , classy-prelude
+                    , text
+                    , hedgehog                        >= 0.5        && < 0.6
diff --git a/src/Huck.hs b/src/Huck.hs
new file mode 100644
--- /dev/null
+++ b/src/Huck.hs
@@ -0,0 +1,5 @@
+--
+-- This is an industrial strength TOML parser library.
+--
+{-# LANGUAGE NoImplicitPrelude #-}
+module Huck where
diff --git a/test/test-io.hs b/test/test-io.hs
new file mode 100644
--- /dev/null
+++ b/test/test-io.hs
@@ -0,0 +1,2 @@
+main :: IO ()
+main = pure ()
diff --git a/test/test.hs b/test/test.hs
new file mode 100644
--- /dev/null
+++ b/test/test.hs
@@ -0,0 +1,2 @@
+main :: IO ()
+main = pure ()
