cabal-version: 1.18 name: hgis version: 1.0.0.0 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2016-2018 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale synopsis: Library and for GIS with Haskell description: Package containing functions to make graphs, read shapefiles, and compute areas/perimeters of geographic features. category: Web build-type: Simple extra-source-files: cabal.project.local stack.yaml extra-doc-files: README.md docs/manual.tex src/depends/readshp/LICENSE source-repository head type: darcs location: https://hub.darcs.net/vmchale/hgis flag development description: Turn on '-Werror' default: False manual: True flag cairo description: Enable build using cairo backend, allowing generation of PNGs default: True library exposed-modules: GIS.Math.Projections GIS.Math.Spherical GIS.Hylo GIS.Graphics.PlotSVG hs-source-dirs: src src/depends/readshp other-modules: GIS.Graphics.Types GIS.Math.Utils GIS.Utils GIS.Graphics.Plot GIS.Types Geometry.Shapefile Geometry.Shapefile.MergeShpDbf Geometry.Shapefile.ReadDbf Geometry.Shapefile.ReadShp Geometry.Shapefile.Types Geometry.Shapefile.Internal default-language: Haskell2010 default-extensions: DeriveGeneric OverloadedStrings ghc-options: -Wall build-depends: base >=4.7 && <5, Chart -any, Chart-diagrams -any, lens -any, composition-prelude >=1.1.0.1, ansi-wl-pprint -any, directory -any, colour -any, data-default -any, binary -any, bytestring -any, data-binary-ieee754 -any, filepath -any, monad-loops -any if flag(cairo) exposed-modules: GIS.Graphics.PlotPNG if flag(cairo) build-depends: Chart-cairo -any if flag(development) ghc-options: -Werror if impl(ghc >=8.0) ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates test-suite hgis-test type: exitcode-stdio-1.0 main-is: Spec.hs hs-source-dirs: test default-language: Haskell2010 ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall build-depends: base -any, hgis -any, hspec -any if flag(development) ghc-options: -Werror if impl(ghc >=8.0) ghc-options: -Wincomplete-uni-patterns -Wincomplete-record-updates