diff --git a/Changelog.md b/Changelog.md
new file mode 100644
--- /dev/null
+++ b/Changelog.md
@@ -0,0 +1,3 @@
+v0.0.0.9
+========
+empty changelog
diff --git a/README.md b/README.md
new file mode 100644
--- /dev/null
+++ b/README.md
@@ -0,0 +1,19 @@
+# Warp
+
+A lightning-fast tool to quickly switch between repositories
+
+# Getting started
+
+# Contributing
+
+# License
+
+Copyright (c) 2015 Siddharth Bhat
+
+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/stack.yaml b/stack.yaml
new file mode 100644
--- /dev/null
+++ b/stack.yaml
@@ -0,0 +1,29 @@
+# For more information, see: https://github.com/commercialhaskell/stack/blob/master/doc/yaml_configuration.md
+
+# Specifies the GHC version and set of packages available (e.g., lts-3.5, nightly-2015-09-21, ghc-7.10.2)
+resolver: lts-3.2
+
+# Local packages, usually specified by relative directory name
+packages:
+- '.'
+
+# Packages to be pulled from upstream that are not in the resolver (e.g., acme-missiles-0.3)
+extra-deps: []
+
+# Override default flag values for local packages and extra-deps
+flags: {}
+
+# Control whether we use the GHC we find on the path
+# system-ghc: true
+
+# Require a specific version of stack, using version ranges
+# require-stack-version: -any # Default
+# require-stack-version: >= 0.1.4.0
+
+# Override the architecture used by stack, especially useful on Windows
+# arch: i386
+# arch: x86_64
+
+# Extra directories used by stack for building
+# extra-include-dirs: [/path/to/dir]
+# extra-lib-dirs: [/path/to/dir]
diff --git a/teleport.cabal b/teleport.cabal
--- a/teleport.cabal
+++ b/teleport.cabal
@@ -1,7 +1,9 @@
 name:                teleport
-version:             0.0.0.9
+version:             0.0.0.10
 synopsis:            A tool to quickly switch between directories
-description:         Please see README.md
+description:
+    A tool to quickly switch between directories 
+    Please see README.md for more details
 homepage:            https://github.com/bollu/teleport#readme
 license:             MIT
 license-file:        LICENSE
@@ -15,18 +17,25 @@
 -- extra-source-files:
 cabal-version:       >=1.10
 
+extra-source-files:
+    README.md
+    Changelog.md
+    stack.yaml
+    teleport.sh
+
+
 library
   hs-source-dirs:      src
   exposed-modules:     Lib
   build-depends:       base >= 4.7 && < 5
   default-language:    Haskell2010
 
-executable warp-haskell-exe
+executable teleport-exe
   hs-source-dirs:      app
   main-is:             Main.hs
   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
   build-depends:       base
-                     , warp-haskell
+                     , teleport
                      , turtle
                      , optparse-applicative
                      , system-filepath
@@ -37,15 +46,15 @@
                      , ansi-terminal
   default-language:    Haskell2010
 
-test-suite warp-haskell-test
+test-suite teleport-test
   type:                exitcode-stdio-1.0
   hs-source-dirs:      test
   main-is:             Spec.hs
   build-depends:       base
-                     , warp-haskell
+                     , teleport
   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
   default-language:    Haskell2010
 
 source-repository head
   type:     git
-  location: https://github.com/bollu/warp-haskell
+  location: https://github.com/bollu/teleport
diff --git a/teleport.sh b/teleport.sh
new file mode 100644
--- /dev/null
+++ b/teleport.sh
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+function tp() {
+    OUTPUT=`teleport-exe $@`
+    # return code 2 is used to indicate that the shell script
+    # should use the output to warp to
+    if [ $? -eq 2 ]
+        then cd "$OUTPUT"
+        else echo "$OUTPUT"
+    fi
+}
