-- Initial mars.cabal generated by cabal init. For further documentation, -- see http://haskell.org/cabal/users-guide/ -- The name of the package. name: mars -- 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.4 -- A short (one-line) description of the package. synopsis: Generates mountainous terrain using a random walk algorithm. -- A longer description of the package. description: Provides functions for generating mountain-like terrain structure using a random walk algorithm. Inspired by Pickover's 1998 article \"Vacation on Mars\". The data can be output as an ascii-format PLY file, or viewed \"overhead\" as an intensity graph. The PLY file can be loaded into a 3D modeling program such as Blender. -- URL for the project homepage or repository. homepage: https://qlfiles.net -- The license under which the package is released. license: GPL-3 -- The file containing the license text. license-file: LICENSE -- The package author(s). author: Christopher Howard -- An email address to which users can send suggestions, bug reports, and -- patches. maintainer: ch.howard@zoho.com -- A copyright notice. -- copyright: category: Graphics build-type: Simple -- Extra files to be distributed with the package, such as examples or a -- README. -- extra-source-files: -- Constraint on the version of Cabal needed to build this package. cabal-version: >=1.10 library -- Modules exported by the library. exposed-modules: Graphics.Mars.Display2D , Graphics.Mars.Example , Graphics.Mars.Paint , Graphics.Mars.Ply , Graphics.Mars.Graph -- Modules included in this library but not exported. other-modules: Graphics.Mars.Walk , Graphics.Mars.ReaderStateRandom , Graphics.Mars.Stamp , Graphics.Mars.Array -- LANGUAGE extensions used by modules in this package. other-extensions: GeneralizedNewtypeDeriving -- Other library packages from which modules are imported. build-depends: base >=4.6 && <4.10 , gloss >=1.7 && <1.10 , random >=1.0 && <1.2 , MonadRandom >=0.4 && <0.5 , mtl >=2.2 && <2.3 , array >=0.4 && <0.6 , bytestring >=0.10 && <0.11 , colour >=2.3 && <2.4 -- Directories containing source files. -- hs-source-dirs: -- Base language which the package is written in. default-language: Haskell2010