diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,20 @@
+Copyright (c) 2014 J.Person
+
+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/Network/Gearman.hs b/Network/Gearman.hs
new file mode 100644
--- /dev/null
+++ b/Network/Gearman.hs
@@ -0,0 +1,8 @@
+module Network.Gearman ( module Network.Gearman.Client
+                       , module Network.Gearman.Worker
+                       , module Network.Gearman.Internal
+                       ) where
+
+import Network.Gearman.Client
+import Network.Gearman.Worker
+import Network.Gearman.Internal
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/hgearman.cabal b/hgearman.cabal
new file mode 100644
--- /dev/null
+++ b/hgearman.cabal
@@ -0,0 +1,38 @@
+-- Initial hgearman.cabal generated by cabal init.  For further 
+-- documentation, see http://haskell.org/cabal/users-guide/
+
+name:                hgearman
+version:             0.1.0.0
+synopsis:            A Gearman client for Haskell.
+description:         Gearman client for Haskell (not reccomended for production use).
+license:             MIT
+license-file:        LICENSE
+author:              Jason Person
+maintainer:          jrperson@gmail.com
+copyright:           2015, Jason Pesron
+category:            Network
+build-type:          Simple
+stability:           alpha
+cabal-version:       >=1.10
+
+source-repository head
+    type: git
+    location: https://github.com/jperson/hgearman-client.git
+
+library
+  default-language:   Haskell2010
+  ghc-options:        -Wall
+  build-depends:       base                 >= 4.7      && < 5.0
+                      ,binary               >= 0.7.3.0  && < 0.8.0.0
+                      ,bytestring           >= 0.10     && < 0.11
+                      ,network              >= 2.6.2.0  && < 2.6.3.0
+                      ,unordered-containers >= 0.2.5.0  && < 0.2.6.0
+                      ,transformers         >= 0.4.2.0  && < 0.4.4.0
+                      ,transformers-base    >= 0.4.4    && < 0.4.5
+                      ,mtl                  >= 2.2.1    && < 2.3.0
+                      ,monad-control        >= 1.0.0.4  && < 1.0.1.0
+                      ,resource-pool        >= 0.2.3.2  && < 0.2.4.0
+
+  exposed-modules:    Network.Gearman
+  --other-modules:      Network.Gearman.Protocol
+  default-language:   Haskell2010
