module Rob.Package where

-- TODO: get these props from the .cabal file

import qualified Paths_rob
import Data.Version (showVersion)

-- | Return the Package version (stored in the .cabal file)
version :: String
version :: String
version = Version -> String
showVersion Version
Paths_rob.version

-- | Return the package name
name :: String
name :: String
name = String
"rob"

-- | Return the package author
author :: String
author :: String
author = String
"Author: Gianluca Guarini"

-- | Return the package description
description :: String
description :: String
description = String
"Projects generator"