-
Notifications
You must be signed in to change notification settings - Fork 0
/
bcd-config.cabal
51 lines (48 loc) · 1.61 KB
/
bcd-config.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
name: bcd-config
version: 0.2.1.1
synopsis: Library to get config.
description: Library to get config to different systems
homepage: https://github.com/biocad/bcd-config#readme
bug-reports: https://github.com/biocad/bcd-config/issues
author: Bogdan Neterebskii
maintainer: bog2dan1@gmail.com
copyright: (c) 2019, Bogdan Neterebskii
stability: experimental
category: System
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/biocad/bcd-config
library
hs-source-dirs: src
exposed-modules: System.BCD.Config
, System.BCD.Config.Mongo
, System.BCD.Config.Neo4j
, System.BCD.Config.Redis
, System.BCD.Config.Mysql
, System.BCD.Config.Postgres
, System.BCD.Config.Schrodinger
, System.BCD.Config.FileSystem
, System.BCD.Config.S3
, System.BCD.Config.BioSources
build-depends: base >=4.7 && <5
, aeson
, aeson-casing
, aeson-picker
, containers
, deepseq
, dotenv
, lens
, text
, unordered-containers
default-language: Haskell2010
default-extensions: DeriveGeneric
, OverloadedStrings
, RecordWildCards
, TemplateHaskell