cabal-version: 2.4 name: hcount version: 0.0.1 x-revision: 1 synopsis: Haskell name counts. description: Counting of Haskell names and artifacts usage, based on stan. . === Usage . - Include the following ghc-options in the cabal file of the libraries you want to analyse: . > -fwrite-ide-info > -hiedir=.hie . - Install hcount . > stack install hcount . - run hcount . > cd project > hcount . > See 'hcount --help' for options. category: project author: Tony Day maintainer: tonyday567@gmail.com copyright: Tony Day (c) 2020 license: BSD-3-Clause homepage: https://github.com/tonyday567/hcount#readme bug-reports: https://github.com/tonyday567/hcount/issues build-type: Simple source-repository head type: git location: https://github.com/tonyday567/hcount executable hcount main-is: hcount.hs hs-source-dirs: app build-depends: attoparsec >= 0.13 && < 0.14, base >= 4.7 && < 5, containers >= 0.6 && < 0.7, ghc >= 8.10 && < 8.11, lens > 4.19 && < 4.20, numhask >= 0.7 && < 0.8, optparse-applicative >= 0.15 && < 0.16, stan >= 0.1 && < 0.2, text >= 1.2 && < 1.3, default-language: Haskell2010 default-extensions: ghc-options: -fwrite-ide-info -hiedir=.hie