-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrade.cabal
56 lines (54 loc) · 2.02 KB
/
grade.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: grade
version: 0.1.0.0
-- synopsis:
-- description:
license: BSD2
license-file: COPYING
author: Nathaniel Wesley Filardo
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: README.rst
cabal-version: >=1.10
library
exposed-modules: Grade.Types,
Grade.ParseUtils,
Grade.Parse,
Grade.Grade,
Grade.GradeIO,
Grade.Score.Zeroing,
Grade.Score.Setting,
Grade.Score.Bounding,
Grade.Score.Commenting,
Grade.Score.SectionOnly,
Grade.Score.Simple,
Grade.Score.EqualWeighted,
Grade.Score.EqualWeightedCounting,
Grade.Skeleton,
Grade.Print
hs-source-dirs: lib
default-language: Haskell2010
build-depends: base >=4.6 && <5,
bytestring >=0.10 && <0.11,
containers >=0.5 && <1,
lens >=4 && <5,
mtl >=2.2 && <3,
parsers >=0.12 && <1,
text >=1.2 && <2,
trifecta >=1.6 && <1.7,
ansi-wl-pprint >= 0.6 && <1,
wl-pprint-extras >=3.5 && <4
executable grade
Main-Is: Grade.hs
hs-source-dirs: prog
default-language: Haskell2010
other-extensions: CPP
build-depends: base >=4.6 && <5,
directory >= 1.2 && <2,
filepath >= 1.4 && <2,
trifecta >=1.6 && <1.7,
ansi-wl-pprint >= 0.6 && <1,
optparse-applicative >= 0.13 && < 0.14,
wl-pprint-extras >=3.5 && <4,
grade >=0.1