diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,30 @@
+Copyright (c) 2017 Daniel Mendler
+
+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 holders nor the names of other
+      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
+OWNER 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/src/Control/Monad/RWS/CPS.hs b/src/Control/Monad/RWS/CPS.hs
new file mode 100644
--- /dev/null
+++ b/src/Control/Monad/RWS/CPS.hs
@@ -0,0 +1,8 @@
+{-# LANGUAGE PackageImports #-}
+module Control.Monad.RWS.CPS (
+  module X
+) where
+
+import "writer-cps-mtl" Control.Monad.RWS.CPS as X
+import "writer-cps-lens" Control.Monad.Trans.RWS.CPS.Lens
+import "writer-cps-morph" Control.Monad.Trans.RWS.CPS.Morph
diff --git a/src/Control/Monad/Trans/RWS/CPS.hs b/src/Control/Monad/Trans/RWS/CPS.hs
new file mode 100644
--- /dev/null
+++ b/src/Control/Monad/Trans/RWS/CPS.hs
@@ -0,0 +1,8 @@
+{-# LANGUAGE PackageImports #-}
+module Control.Monad.Trans.RWS.CPS (
+  module X
+) where
+
+import "writer-cps-transformers" Control.Monad.Trans.RWS.CPS as X
+import "writer-cps-lens" Control.Monad.Trans.RWS.CPS.Lens
+import "writer-cps-morph" Control.Monad.Trans.RWS.CPS.Morph
diff --git a/src/Control/Monad/Trans/Writer/CPS.hs b/src/Control/Monad/Trans/Writer/CPS.hs
new file mode 100644
--- /dev/null
+++ b/src/Control/Monad/Trans/Writer/CPS.hs
@@ -0,0 +1,8 @@
+{-# LANGUAGE PackageImports #-}
+module Control.Monad.Trans.Writer.CPS (
+  module X
+) where
+
+import "writer-cps-transformers" Control.Monad.Trans.Writer.CPS as X
+import "writer-cps-lens" Control.Monad.Trans.Writer.CPS.Lens
+import "writer-cps-morph" Control.Monad.Trans.Writer.CPS.Morph
diff --git a/src/Control/Monad/Writer/CPS.hs b/src/Control/Monad/Writer/CPS.hs
new file mode 100644
--- /dev/null
+++ b/src/Control/Monad/Writer/CPS.hs
@@ -0,0 +1,8 @@
+{-# LANGUAGE PackageImports #-}
+module Control.Monad.Writer.CPS (
+  module X
+) where
+
+import "writer-cps-mtl" Control.Monad.Writer.CPS as X
+import "writer-cps-lens" Control.Monad.Trans.Writer.CPS.Lens
+import "writer-cps-morph" Control.Monad.Trans.Writer.CPS.Morph
diff --git a/writer-cps-full.cabal b/writer-cps-full.cabal
new file mode 100644
--- /dev/null
+++ b/writer-cps-full.cabal
@@ -0,0 +1,39 @@
+-- This file has been generated from package.yaml by hpack version 0.15.0.
+--
+-- see: https://github.com/sol/hpack
+
+name:           writer-cps-full
+version:        0.1.0.0
+synopsis:       WriteT and RWST monad transformers (Reexport with all dependencies)
+description:    The WriterT and RWST monad transformers provided by writer-cps-transformers are written in continuation passing style and avoid the space-leak problem of the traditional Control.Monad.Trans.Writer.Strict and Control.Monad.Trans.Writer.Lazy. This package reexports from writer-cps-transformers and provides all missing orphan instances, e.g. from mtl.
+category:       Control
+homepage:       https://github.com/minad/writer-cps-full#readme
+bug-reports:    https://github.com/minad/writer-cps-full/issues
+author:         Daniel Mendler
+maintainer:     mail@daniel-mendler.de
+copyright:      2017 Daniel Mendler
+license:        BSD3
+license-file:   LICENSE
+tested-with:    GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
+build-type:     Simple
+cabal-version:  >= 1.10
+
+source-repository head
+  type: git
+  location: https://github.com/minad/writer-cps-full
+
+library
+  hs-source-dirs:
+      src
+  build-depends:
+      base >= 4.5 && < 5
+    , writer-cps-transformers >= 0.1.1.2 && < 0.2
+    , writer-cps-mtl >= 0.1.1.2 && < 0.2
+    , writer-cps-lens >= 0.1.0.0 && < 0.2
+    , writer-cps-morph >= 0.1.0.1 && < 0.2
+  exposed-modules:
+      Control.Monad.RWS.CPS
+      Control.Monad.Trans.RWS.CPS
+      Control.Monad.Trans.Writer.CPS
+      Control.Monad.Writer.CPS
+  default-language: Haskell2010
