cantor-0.3: cantor.cabal
name: cantor
version: 0.3
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:
Application for analyzing Java source code.
.
Currently implemented:
.
* Package dependency analysis
.
* 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 && <4.7,
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 && <4.7,
Cabal >=1.16 && <1.19,
directory >=1.2.0 && <1.3,
filepath >=1.3.0 && <1.4,
hspec >=1.8 && <1.9,
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
other-modules:
hs-source-dirs:
src,
test-src