-- Initial SWMMoutGetMB.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ -- The name of the package. name: SWMMoutGetMB -- 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.1.1 -- A short (one-line) description of the package. synopsis: A parser for SWMM 5 binary .OUT files -- A longer description of the package. description: The United States Environmental Protection Agency (EPA) Storm Water Management Model (SWMM) is a dynamic hydrology-hydraulic water quality simulation model for single event or long-term (continuous) simulation of runoff quantity and quality from primarily urban areas. SWMM 5, which is currently the newest version of SWMM, produces a binary .OUT file as its output. SWMMoutGetMB is a SWMM binary reader using the Get monad in Haskell to retrieve contents of this binary file and save it into a SWMMObject, which can then be used in Haskell programs. -- URL for the project homepage or repository. homepage: https://github.com/siddhanathan/SWMMoutGetMB -- The license under which the package is released. license: LGPL-3 -- The file containing the license text. license-file: LICENSE -- The package author(s). author: Siddhanathan Shanmugam -- An email address to which users can send suggestions, bug reports, and -- patches. maintainer: siddhanathan@gmail.com -- A copyright notice. -- copyright: (C) 2014 Siddhanathan Shanmugam category: Water, Hydrology, Environment build-type: Simple -- Constraint on the version of Cabal needed to build this package. cabal-version: >=1.8 library -- Modules exported by the library. exposed-modules: Water.SWMM -- Modules included in this library but not exported. -- other-modules: Examples -- Other library packages from which modules are imported. build-depends: base >= 4 && < 5, binary >= 0.7, bytestring >= 0.10, data-binary-ieee754 >= 0.4, pipes-binary >= 0.4, pipes-bytestring >= 2.1, pipes-parse >= 3.0, split >= 0.2 -- Directories containing source files. hs-source-dirs: src