-
Notifications
You must be signed in to change notification settings - Fork 0
/
bio-experiments.cabal
56 lines (52 loc) · 1.66 KB
/
bio-experiments.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
46
47
48
49
50
51
52
53
54
55
56
name: bio-experiments
version: 0.3.0
homepage: NONE
license: BSD3
license-file: LICENSE
author: Kai Zhang
maintainer: kai@kzhang.org
copyright: (c) 2017-2021 Kai Zhang
category: Bio
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
ghc-options: -Wall
hs-source-dirs: src
exposed-modules: Bio.Data.Experiment
Bio.Data.Experiment.Types
Bio.Data.Experiment.File
Bio.Data.Experiment.Replicate
Bio.Data.Experiment.Parser
build-depends: base == 4.*
, binary
, bytestring
, aeson
, case-insensitive
, containers
, dhall-yaml
, microlens
, microlens-th
, text
, singletons >= 3.0
, singletons-th
, singletons-base
, unordered-containers
, yaml
, vector
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Test.hs
-- other-modules:
default-language: Haskell2010
build-depends: base
, aeson
, tasty
, tasty-hunit
, singletons
, bio-experiments
source-repository head
type: git
location: https://github.com/githubuser/bio-experiments