diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,19 @@
+Copyright (c) 2011, 2012 Simon Hengel <sol@typeful.net>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/Setup.lhs b/Setup.lhs
new file mode 100644
--- /dev/null
+++ b/Setup.lhs
@@ -0,0 +1,3 @@
+#!/usr/bin/env runhaskell
+> import Distribution.Simple
+> main = defaultMain
diff --git a/hspec-shouldbe.cabal b/hspec-shouldbe.cabal
new file mode 100644
--- /dev/null
+++ b/hspec-shouldbe.cabal
@@ -0,0 +1,26 @@
+name:             hspec-shouldbe
+version:          0.0.0
+synopsis:         Convenience wrapper and utilities for hspec
+license:          MIT
+license-file:     LICENSE
+copyright:        (c) 2011, 2012 Simon Hengel
+author:           Simon Hengel <sol@typeful.net>
+maintainer:       Simon Hengel <sol@typeful.net>
+build-type:       Simple
+category:         Testing
+cabal-version:    >= 1.6
+
+source-repository head
+  type: git
+  location: https://github.com/sol/hspec-shouldbe
+
+library
+  ghc-options:
+      -Wall
+  hs-source-dirs:
+      src
+  build-depends:
+      hspec
+    , test-shouldbe
+  exposed-modules:
+      Test.Hspec.ShouldBe
diff --git a/src/Test/Hspec/ShouldBe.hs b/src/Test/Hspec/ShouldBe.hs
new file mode 100644
--- /dev/null
+++ b/src/Test/Hspec/ShouldBe.hs
@@ -0,0 +1,13 @@
+{-# LANGUAGE NoImplicitPrelude #-}
+module Test.Hspec.ShouldBe (
+  module Test.HUnit.ShouldBe
+, module Test.Hspec.Monadic
+, prop
+, property
+)
+where
+
+import           Test.Hspec.Monadic
+import           Test.Hspec.QuickCheck
+import           Test.Hspec.HUnit ()
+import           Test.HUnit.ShouldBe
