diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,7 @@
 # Change log
 
 Lackey uses [Semantic Versioning][].
-
-## v0.1.0 (2015-08-25)
-
--   Initially created.
+The change log is available through the [releases on GitHub][].
 
-[semantic versioning]: http://semver.org/spec/v2.0.0.html
+[Semantic Versioning]: http://semver.org/spec/v2.0.0.html
+[releases on GitHub]: https://github.com/tfausak/lackey/releases
diff --git a/LICENSE.md b/LICENSE.md
--- a/LICENSE.md
+++ b/LICENSE.md
@@ -1,21 +1,23 @@
-The MIT License (MIT)
+[The MIT License (MIT)][]
 
-Copyright (c) 2015 Taylor Fausak
+Copyright (c) 2016 Taylor Fausak
 
-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:
+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 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.
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+[The MIT License (MIT)]: https://opensource.org/licenses/MIT
diff --git a/Setup.hs b/Setup.hs
--- a/Setup.hs
+++ b/Setup.hs
@@ -1,6 +1,4 @@
-module Main (main) where
-
-import Distribution.Simple (defaultMain)
+import qualified Distribution.Simple
 
 main :: IO ()
-main = defaultMain
+main = Distribution.Simple.defaultMain
diff --git a/lackey.cabal b/lackey.cabal
--- a/lackey.cabal
+++ b/lackey.cabal
@@ -1,50 +1,60 @@
-name: lackey
-version: 0.1.0
-cabal-version: >=1.10
-build-type: Simple
-license: MIT
-license-file: LICENSE.md
-maintainer: Taylor Fausak
-synopsis: A library for generating Ruby consumers of Servant APIs.
-description:
-    <https://github.com/tfausak/lackey#readme>
-category: Web
+-- This file has been generated from package.yaml by hpack version 0.9.0.
+--
+-- see: https://github.com/sol/hpack
+
+name:           lackey
+version:        0.1.1
+synopsis:       Generate Ruby consumers of Servant APIs.
+description:    Lackey generates Ruby consumers of Servant APIs.
+category:       Web
+homepage:       https://github.com/tfausak/lackey#readme
+bug-reports:    https://github.com/tfausak/lackey/issues
+maintainer:     Taylor Fausak
+license:        MIT
+build-type:     Simple
+cabal-version:  >= 1.10
+
 extra-source-files:
     CHANGELOG.md
+    LICENSE.md
+    package.yaml
     README.md
+    stack.yaml
 
 source-repository head
-    type: git
-    location: https://github.com/tfausak/lackey
+  type: git
+  location: https://github.com/tfausak/lackey
 
 library
-    exposed-modules:
-        Lackey
-        Lackey.Internal
-        Lackey.Internal.Endpoint
-        Lackey.Internal.HasCode
-        Lackey.Internal.HasRuby
-        Lackey.Internal.Header
-        Lackey.Internal.MatrixItem
-        Lackey.Internal.Method
-        Lackey.Internal.PathSegment
-        Lackey.Internal.QueryItem
-    build-depends:
-        base >=4.7 && <4.9,
-        servant >=0.4 && <0.5
-    default-language: Haskell2010
-    hs-source-dirs: library
-    ghc-options: -Wall
+  hs-source-dirs:
+      library
+  ghc-options: -Wall
+  build-depends:
+      base >=4.7 && <4.9
+    , servant >=0.4 && <0.5
+  exposed-modules:
+      Lackey
+      Lackey.Internal
+      Lackey.Internal.Endpoint
+      Lackey.Internal.HasCode
+      Lackey.Internal.HasRuby
+      Lackey.Internal.Header
+      Lackey.Internal.MatrixItem
+      Lackey.Internal.Method
+      Lackey.Internal.PathSegment
+      Lackey.Internal.QueryItem
+  default-language: Haskell2010
 
 test-suite lackey-test-suite
-    type: exitcode-stdio-1.0
-    main-is: Main.hs
-    build-depends:
-        base -any,
-        lackey -any,
-        servant -any,
-        tasty >=0.10 && <0.11,
-        tasty-hspec >=1.1 && <1.2
-    default-language: Haskell2010
-    hs-source-dirs: test-suite
-    ghc-options: -threaded -Wall
+  type: exitcode-stdio-1.0
+  main-is: Main.hs
+  hs-source-dirs:
+      test-suite
+  ghc-options: -Wall
+  build-depends:
+      base
+    , lackey
+    , servant
+    , tasty >=0.10 && <0.12
+    , tasty-hspec >=1.1 && <1.2
+  default-language: Haskell2010
diff --git a/package.yaml b/package.yaml
new file mode 100644
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,31 @@
+category: Web
+description: Lackey generates Ruby consumers of Servant APIs.
+extra-source-files:
+- CHANGELOG.md
+- LICENSE.md
+- package.yaml
+- README.md
+- stack.yaml
+ghc-options:
+- -Wall
+github: tfausak/lackey
+library:
+  dependencies:
+  - base >=4.7 && <4.9
+  - servant >=0.4 && <0.5
+  source-dirs: library
+license: MIT
+maintainer: Taylor Fausak
+name: lackey
+synopsis: Generate Ruby consumers of Servant APIs.
+tests:
+  lackey-test-suite:
+    dependencies:
+    - base
+    - lackey
+    - servant
+    - tasty >=0.10 && <0.12
+    - tasty-hspec >=1.1 && <1.2
+    source-dirs: test-suite
+    main: Main.hs
+version: '0.1.1'
diff --git a/stack.yaml b/stack.yaml
new file mode 100644
--- /dev/null
+++ b/stack.yaml
@@ -0,0 +1,3 @@
+install-ghc: true
+require-stack-version: ! '>=1.0.4'
+resolver: lts-5.8
