forked from sweirich/haskelltester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgradescope.cabal
More file actions
40 lines (36 loc) · 1.16 KB
/
gradescope.cabal
File metadata and controls
40 lines (36 loc) · 1.16 KB
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
cabal-version: >=1.10
name: gradescope
version: 0
-- synopsis:
-- description:
-- bug-reports:
license: BSD3
license-file: LICENSE
author: Richard Eisenberg, Stephanie Weirich
maintainer: sweirich@cis.upenn.edu
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library
exposed-modules: Gradescope, TestData, Tester
-- other-modules:
other-extensions: DeriveAnyClass
, DeriveGeneric
, DuplicateRecordFields
, OverloadedStrings
, LambdaCase
, ScopedTypeVariables
, RecordWildCards
build-depends: base >=4 && <5
, aeson >=1.4
, text >=1.2
, bytestring >=0.10
, unordered-containers >=0.2
, syb >=0.7
, HUnit >= 1.6
, QuickCheck >=2.8 && < 3
, yaml >= 0.11
, directory >= 1.3
hs-source-dirs: src
default-language: Haskell2010