-- Initial yesod-articles.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ -- The name of the package. name: yesod-articles -- The package version. See the Haskell package versioning policy (PVP) -- for standards guiding when and how versions should be incremented. -- http://www.haskell.org/haskellwiki/Package_versioning_policy -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 0.1.0.0 -- A short (one-line) description of the package. synopsis: Automatically generate article previews for a yesod site -- A longer description of the package. -- description: -- URL for the project homepage or repository. homepage: https://github.com/matthew-eads/yesod-articles -- The license under which the package is released. license: BSD3 -- The file containing the license text. license-file: LICENSE -- The package author(s). author: Matthew Eads -- An email address to which users can send suggestions, bug reports, and -- patches. maintainer: mattaeads@gmail.com -- A copyright notice. -- copyright: category: Web, Yesod build-type: Simple -- Constraint on the version of Cabal needed to build this package. cabal-version: >=1.8 library hs-source-dirs: src -- Modules exported by the library. exposed-modules: Yesod.Articles -- Modules included in this library but not exported. -- other-modules: -- Other library packages from which modules are imported. build-depends: base >= 4.8.2.0 && < 4.9 || >= 4.9.1.0 && < 5 , yesod >= 1.4.3 && < 1.5 , yesod-core >= 1.4.17 && < 1.5 , regex-compat , template-haskell , dates >= 0.2.2.0 , text >= 0.11 && < 2.0 , shakespeare >= 2.0 && < 2.1 , directory >= 1.1 && < 1.3 , th-lift-instances , blaze-html , filepath test-suite test type: exitcode-stdio-1.0 main-is: main.hs hs-source-dirs: test ghc-options: -Wall build-depends: base >= 4.8.2.0 && < 4.9 || >= 4.9.1.0 && < 5 , yesod >= 1.4.3 && < 1.5 , yesod-core >= 1.4.17 && < 1.5 , regex-compat , template-haskell , dates >= 0.2.2.0 , text >= 0.11 && < 2.0 , shakespeare >= 2.0 && < 2.1 , directory >= 1.1 && < 1.3 , th-lift-instances , blaze-html , filepath , hspec , yesod-test , yesod-articles source-repository head type: git location: git://github.com/matthew-eads/yesod-articles.git