-
Notifications
You must be signed in to change notification settings - Fork 1
/
vcf.cabal
45 lines (42 loc) · 1.37 KB
/
vcf.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: vcf
version: 0.10.0
synopsis: A package to parse VCF files inspired in similar python libraries
-- description:
license: MIT
license-file: LICENSE
author: Juan Paucar
maintainer: juantotish1@hotmail.com
-- copyright:
category: Bioinformatics
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
ghc-options : -Wall -O2 -optc-O3 -optc-ffast-math -funfolding-use-threshold=16 -fno-warn-orphans
exposed-modules: Bio.VCF.Internal.Types,
Bio.VCF.Parser.Parser,
Bio.VCF.Parser.Helpers
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && < 5,
aeson,
attoparsec >= 0.13,
bytestring,
text
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
ghc-options : -Wall
type : exitcode-stdio-1.0
hs-source-dirs : spec
main-is : Spec.hs
build-depends : base >=4.8 && < 5,
hspec,
hspec-expectations,
bytestring,
attoparsec,
vcf
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/juanpaucar/vcf