-
Notifications
You must be signed in to change notification settings - Fork 0
/
givenfind.cabal
74 lines (69 loc) · 2.01 KB
/
givenfind.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.2.
--
-- see: https://github.com/sol/hpack
name: givenfind
version: 0.1.0.0
synopsis: Library collecting data from text
description: Finds questions, commands and data with symbols and units from exercises of different branches (for example - physics)
category: Text
homepage: https://github.com/juliagoda/givenfind
author: Jagoda "juliagoda" Górska
maintainer: [email protected]
copyright: Jagoda Górska
license: GPL-3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: [email protected]:givenfind/givenfind.git
library
exposed-modules:
GivenFind
GivenFind.Chemistry
GivenFind.Geography
GivenFind.Geography.Types
GivenFind.Physics
GivenFind.Questions
other-modules:
Paths_givenfind
hs-source-dirs:
src
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -optP-Wno-nonportable-include-path
build-depends:
base >=4.8 && <5
, containers >=0.5 && <0.6
, gps >=1.2 && <1.3
, radium >=0.8.0
, reverse-geocoding >=0.3 && <0.4
, split >=0.2 && <0.3
, text >=1.2 && <1.3
, time >=1.6 && <1.7
default-language: Haskell2010
test-suite hadolint-unit-tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Chemistry
Geography
Physics
Questions
Samples
Paths_givenfind
hs-source-dirs:
test
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -optP-Wno-nonportable-include-path
build-depends:
QuickCheck
, base
, containers >=0.5 && <0.6
, givenfind
, gps >=1.2 && <1.3
, radium >=0.8.0
, reverse-geocoding >=0.3 && <0.4
, split >=0.2 && <0.3
, text >=1.2 && <1.3
, time >=1.6 && <1.7
default-language: Haskell2010