diff --git a/.travis.yml b/.travis.yml
new file mode 100644
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,1 @@
+language: haskell
diff --git a/Setup.hs b/Setup.hs
deleted file mode 100644
--- a/Setup.hs
+++ /dev/null
@@ -1,2 +0,0 @@
-import Distribution.Simple
-main = defaultMain
diff --git a/Setup.lhs b/Setup.lhs
new file mode 100644
--- /dev/null
+++ b/Setup.lhs
@@ -0,0 +1,7 @@
+#!/usr/bin/runhaskell
+> module Main (main) where
+
+> import Distribution.Simple
+
+> main :: IO ()
+> main = defaultMain
diff --git a/categories.cabal b/categories.cabal
--- a/categories.cabal
+++ b/categories.cabal
@@ -1,6 +1,6 @@
 name:          categories
 category:      Control
-version:       1.0
+version:       1.0.0.1
 license:       BSD3
 cabal-version: >= 1.10
 license-file:  LICENSE
@@ -8,10 +8,12 @@
 maintainer:    Edward A. Kmett <ekmett@gmail.com>
 stability:     experimental
 homepage:      http://github.com/ekmett/categories
+bug-reports:   http://github.com/ekmett/categories/issues
 synopsis:      Categories
 copyright:     Copyright (C) 2008-2010, Edward A. Kmett
 description:   Categories
 build-type:    Simple
+extra-source-files: .travis.yml
 
 flag Optimize
   description: Enable optimizations
