packages feed

cantor-0.4: cantor.cabal

name:           cantor
version:        0.4
cabal-version:  >= 1.10
build-type:     Simple
author:         Krzysztof Langner
maintainer:     klangner@gmail.com
synopsis:       Application for analysis of java source code
homepage:       https://github.com/klangner/cantor
Bug-reports:    https://github.com/klangner/cantor/issues
stability:      Unstable interface, incomplete features.
category:       Application, source code analysis
License:        BSD3
License-file:   LICENSE
Extra-Source-Files:
                CHANGES
description:    
    Cantor is application for analyzing software projects.
    The goal of this application is to help developer understand source code of unknown project.
    .
    Currently implemented:
    .
    * Find language the application is written in
    .
    * Line Of Code metric.

source-repository head
  type:     git
  location: https://github.com/klangner/cantor

executable cantor
  hs-source-dirs:   src
  main-is:          Main.hs
  default-language: Haskell2010
  build-depends:    
                    base >= 4 && <5,
                    directory >=1.2.0 && <1.3,
                    hxt >= 9.3 && < 9.4,
                    hxt-xpath >=9.1.2 && <9.2,
                    filepath >=1.3.0 && <1.4,
                    parsec >=3.1.3 && <3.2,
                    containers >=0.5.0 && <0.6,
                    bytestring >=0.10.0 && <0.11,
                    split >=0.2.2 && <0.3
                    

  ghc-options:      -Wall -threaded

test-suite spec
  type:             exitcode-stdio-1.0
  main-is:          Spec.hs
  default-language: Haskell2010
  build-depends:   
                    base >= 4 && <5,
                    Cabal >=1.16 && <1.19,
                    directory >=1.2.0 && <1.3,
                    filepath >=1.3.0 && <1.4,
                    hspec >= 2 && <3,
                    QuickCheck >=2.6 && <2.7,
                    hxt >= 9.3 && < 9.4,
                    hxt-xpath >=9.1.2 && <9.2,
                    parsec >=3.1.3 && <3.2,
                    containers >=0.5.0 && <0.6,
                    bytestring >=0.10.0 && <0.11,
                    split >=0.2.2 && <0.3

  hs-source-dirs:
                    src,
                    test-src