diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,27 @@
+Copyright 2016 Tony Morris
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+1. Redistributions of source code must retain the above copyright notice, this
+list of conditions, the following disclaimer and the following SHA-512 checksum.
+
+2. Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions, the following disclaimer and the following SHA-512
+checksum in the documentation and/or other materials provided with the
+distribution.
+
+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 HOLDER 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.
+
+THIS SOFTWARE IS PROVIDED WITH A SHA-512 CHECKSUM.
+ecdfdf543fd166b13b76b11e0b010e00d693028771880ffd8f9252ae0b8ac42bddf8eb7a23c21c86a3b50039d642ad9eeb7e8a0e82f6a345f60feb4a54808362
diff --git a/Setup.lhs b/Setup.lhs
new file mode 100644
--- /dev/null
+++ b/Setup.lhs
@@ -0,0 +1,44 @@
+#!/usr/bin/env runhaskell
+\begin{code}
+{-# OPTIONS_GHC -Wall #-}
+module Main (main) where
+
+import Data.List ( nub )
+import Data.Version ( showVersion )
+import Distribution.Package ( PackageName(PackageName), PackageId, InstalledPackageId, packageVersion, packageName )
+import Distribution.PackageDescription ( PackageDescription(), TestSuite(..) )
+import Distribution.Simple ( defaultMainWithHooks, UserHooks(..), simpleUserHooks )
+import Distribution.Simple.Utils ( rewriteFile, createDirectoryIfMissingVerbose )
+import Distribution.Simple.BuildPaths ( autogenModulesDir )
+import Distribution.Simple.Setup ( BuildFlags(buildVerbosity), fromFlag )
+import Distribution.Simple.LocalBuildInfo ( withLibLBI, withTestLBI, LocalBuildInfo(), ComponentLocalBuildInfo(componentPackageDeps) )
+import Distribution.Verbosity ( Verbosity )
+import System.FilePath ( (</>) )
+
+main :: IO ()
+main = defaultMainWithHooks simpleUserHooks
+  { buildHook = \pkg lbi hooks flags -> do
+     generateBuildModule (fromFlag (buildVerbosity flags)) pkg lbi
+     buildHook simpleUserHooks pkg lbi hooks flags
+  }
+
+generateBuildModule :: Verbosity -> PackageDescription -> LocalBuildInfo -> IO ()
+generateBuildModule verbosity pkg lbi = do
+  let dir = autogenModulesDir lbi
+  createDirectoryIfMissingVerbose verbosity True dir
+  withLibLBI pkg lbi $ \_ libcfg -> do
+    withTestLBI pkg lbi $ \suite suitecfg -> do
+      rewriteFile (dir </> "Build_" ++ testName suite ++ ".hs") $ unlines
+        [ "module Build_" ++ testName suite ++ " where"
+        , "deps :: [String]"
+        , "deps = " ++ (show $ formatdeps (testDeps libcfg suitecfg))
+        ]
+  where
+    formatdeps = map (formatone . snd)
+    formatone p = case packageName p of
+      PackageName n -> n ++ "-" ++ showVersion (packageVersion p)
+
+testDeps :: ComponentLocalBuildInfo -> ComponentLocalBuildInfo -> [(InstalledPackageId, PackageId)]
+testDeps xs ys = nub $ componentPackageDeps xs ++ componentPackageDeps ys
+
+\end{code}
diff --git a/casr-logbook-reports-meta.cabal b/casr-logbook-reports-meta.cabal
new file mode 100644
--- /dev/null
+++ b/casr-logbook-reports-meta.cabal
@@ -0,0 +1,77 @@
+name:               casr-logbook-reports-meta
+version:            0.0.1
+license:            OtherLicense
+license-file:       LICENSE
+author:             Tony Morris <ʇǝu˙sıɹɹoɯʇ@ןןǝʞsɐɥ>
+maintainer:         Tony Morris
+copyright:          Copyright (C) 2016 Tony Morris
+synopsis:           Reports on meta-information about entries in a CASR 61.345 logbook (casr-logbook)
+category:           Aviation
+description:        
+  <<https://i.imgur.com/p6LT40r.png>>
+  .
+  Reports on meta-information about entries in a CASR 61.345 logbook (casr-logbook)
+  .
+  <<https://i.imgur.com/Lfhcmtg.png>>
+
+homepage:           https://github.com/tonymorris/casr-logbook-reports-meta
+bug-reports:        https://github.com/tonymorris/casr-logbook-reports-meta/issues
+cabal-version:      >= 1.10
+build-type:         Custom
+extra-source-files: changelog
+
+source-repository   head
+  type:             git
+  location:         git@github.com:tonymorris/casr-logbook-reports-meta.git
+
+flag                small_base
+  description:      Choose the new, split-up base package.
+
+library
+  default-language:
+                    Haskell2010
+
+  build-depends:
+                    base < 5 && >= 4.8
+                    , casr-logbook >= 0.1.3 && < 0.2
+                    , casr-logbook-meta >= 0.0.3 && < 0.1
+                    , lens >= 4.1 && < 5
+                    
+  ghc-options:
+                    -Wall
+
+  default-extensions:
+                    NoImplicitPrelude
+
+  hs-source-dirs:
+                    src
+
+  exposed-modules:
+                    Data.Aviation.Casr.Logbook.Reports.Meta
+                    Data.Aviation.Casr.Logbook.Reports.Meta.ExpenseReport
+
+
+test-suite doctests
+  type:
+                    exitcode-stdio-1.0
+
+  main-is:
+                    doctests.hs
+
+  default-language:
+                    Haskell2010
+
+  build-depends:
+                    base < 5 && >= 3
+                    , doctest >= 0.9.7
+                    , filepath >= 1.3
+                    , directory >= 1.1
+                    , QuickCheck >= 2.0
+                    , template-haskell >= 2.8
+
+  ghc-options:
+                    -Wall
+                    -threaded
+
+  hs-source-dirs:
+                    test
diff --git a/changelog b/changelog
new file mode 100644
--- /dev/null
+++ b/changelog
@@ -0,0 +1,4 @@
+0.0.1
+
+* Initial release
+
diff --git a/src/Data/Aviation/Casr/Logbook/Reports/Meta.hs b/src/Data/Aviation/Casr/Logbook/Reports/Meta.hs
new file mode 100644
--- /dev/null
+++ b/src/Data/Aviation/Casr/Logbook/Reports/Meta.hs
@@ -0,0 +1,7 @@
+{-# LANGUAGE TemplateHaskell #-}
+
+module Data.Aviation.Casr.Logbook.Reports.Meta(
+  module M
+) where
+
+import Data.Aviation.Casr.Logbook.Reports.Meta.ExpenseReport as M
diff --git a/src/Data/Aviation/Casr/Logbook/Reports/Meta/ExpenseReport.hs b/src/Data/Aviation/Casr/Logbook/Reports/Meta/ExpenseReport.hs
new file mode 100644
--- /dev/null
+++ b/src/Data/Aviation/Casr/Logbook/Reports/Meta/ExpenseReport.hs
@@ -0,0 +1,100 @@
+{-# LANGUAGE TemplateHaskell #-}
+
+module Data.Aviation.Casr.Logbook.Reports.Meta.ExpenseReport(
+  ExpenseReport
+, HasExpenseReport
+, entryExpenseReport
+, logbookExpenseReport
+) where
+
+import Control.Category((.))
+import Control.Lens(makeClassy, (^.), _Wrapped)
+import Control.Monad((>>=), return)
+import Data.Aviation.Casr.Logbook(Entry(AircraftFlightEntry, SimulatorFlightEntry, ExamEntry, BriefingEntry), Logbook, logbookentries)
+import Data.Aviation.Casr.Logbook.Meta(
+    AircraftFlightMeta
+  , SimulatorFlightMeta
+  , BriefingMeta
+  , ExamMeta
+  , AircraftFlightExpense(ExpenseAircraftUsage, ExpenseAircraftLanding)
+  , briefingCost
+  , examexpenseamount
+  , simulatorFlightCost
+  , aircraftlandingexpenseamount
+  , expenses
+  , aircraftUsageCost
+  )
+import Data.Eq(Eq)
+import Data.Foldable(sum, foldMap)
+import Data.Function(($))
+import Data.Int(Int)
+import Data.Monoid(Monoid(mempty, mappend))
+import Data.Ord(Ord)
+import Prelude(Show)
+import Prelude((+))
+
+data ExpenseReport =
+  ExpenseReport {
+    _aircraftUsageExpenseTotal :: Int
+  , _aircraftLandingExpenseTotal :: Int
+  , _briefingExpenseTotal :: Int
+  , _examExpenseTotal :: Int
+  , _simulatorFlightTotal :: Int
+  } deriving (Eq, Ord, Show)
+
+makeClassy ''ExpenseReport
+
+instance Monoid ExpenseReport where
+  mempty =
+    ExpenseReport 0 0 0 0 0
+  ExpenseReport ag1 al1 b1 e1 s1 `mappend` ExpenseReport ag2 al2 b2 e2 s2 =
+    ExpenseReport (ag1 + ag2) (al1 + al2) (b1 + b2) (e1 + e2) (s1 + s2)
+
+entryExpenseReport ::
+  Entry AircraftFlightMeta SimulatorFlightMeta ExamMeta BriefingMeta
+  -> ExpenseReport
+entryExpenseReport (AircraftFlightEntry fl e) =
+  let usage =
+        sum $ e ^. expenses >>= \p ->
+          case p of
+            ExpenseAircraftUsage e' -> [aircraftUsageCost fl e']
+            ExpenseAircraftLanding _ -> []
+      landing =
+        sum $ e ^. expenses >>= \p ->
+          case p of
+            ExpenseAircraftUsage _ -> []
+            ExpenseAircraftLanding l -> [l ^. aircraftlandingexpenseamount]
+  in  ExpenseReport
+        usage
+        landing
+        0
+        0
+        0
+entryExpenseReport (SimulatorFlightEntry fl e) =
+  ExpenseReport
+    0
+    0
+    0
+    0
+    (sum $ e ^. _Wrapped >>= return . simulatorFlightCost fl)
+entryExpenseReport (ExamEntry _ e) =
+  ExpenseReport
+    0
+    0
+    0
+    (sum $ e ^. _Wrapped >>= return . (^. examexpenseamount))
+    0
+entryExpenseReport (BriefingEntry br e) =
+  ExpenseReport
+    0
+    0
+    (sum $ e ^. _Wrapped >>= return . briefingCost br)
+    0
+    0
+
+logbookExpenseReport ::
+  Logbook AircraftFlightMeta SimulatorFlightMeta ExamMeta BriefingMeta
+  -> ExpenseReport
+logbookExpenseReport b =
+  foldMap entryExpenseReport (b ^. logbookentries . _Wrapped)
+
diff --git a/test/doctests.hs b/test/doctests.hs
new file mode 100644
--- /dev/null
+++ b/test/doctests.hs
@@ -0,0 +1,32 @@
+module Main where
+
+import Build_doctests (deps)
+import Control.Applicative
+import Control.Monad
+import Data.List
+import System.Directory
+import System.FilePath
+import Test.DocTest
+
+main ::
+  IO ()
+main =
+  getSources >>= \sources -> doctest $
+      "-isrc"
+    : "-idist/build/autogen"
+    : "-optP-include"
+    : "-optPdist/build/autogen/cabal_macros.h"
+    : "-hide-all-packages"
+    : map ("-package="++) deps ++ sources
+
+getSources :: IO [FilePath]
+getSources = filter (isSuffixOf ".hs") <$> go "src"
+  where
+    go dir = do
+      (dirs, files) <- getFilesAndDirectories dir
+      (files ++) . concat <$> mapM go dirs
+
+getFilesAndDirectories :: FilePath -> IO ([FilePath], [FilePath])
+getFilesAndDirectories dir = do
+  c <- map (dir </>) . filter (`notElem` ["..", "."]) <$> getDirectoryContents dir
+  (,) <$> filterM doesDirectoryExist c <*> filterM doesFileExist c
