forked from Courseography/courseography
-
Notifications
You must be signed in to change notification settings - Fork 1
/
courseography.cabal
139 lines (138 loc) · 2.97 KB
/
courseography.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
name: courseography
version: 0.2.0.0
synopsis: Program and course planning app for the University of Toronto.
description: A web application designed to aid students in planning their courses
at the University of Toronto.
homepage: https://courseography.cdf.toronto.edu
license: GPL
license-file: LICENSE
author: David Liu
maintainer: david@cs.toronto.edu
-- copyright:
category: Planning
build-type: Custom
cabal-version: >=1.22
executable courseography
main-is: Main.hs
other-modules:
Config,
Css.About,
Css.Common,
Css.Compiler,
Css.Constants,
Css.Draw,
Css.FourOhFour,
Css.Graph,
Css.Loading,
Css.Post,
Css.Privacy,
Css.Search,
Css.Timetable,
Database.CourseInsertion,
Database.CourseQueries,
Database.CourseVideoSeed,
Database.Requirement,
Database.DataType,
Database.Database,
Database.Tables,
Export.GetImages,
Export.ImageConversion,
Export.LatexGenerator,
Export.PdfGenerator,
Export.TimetableImageCreator,
MasterTemplate,
Response,
Response.About,
Response.Calendar,
Response.Draw,
Response.Export,
Response.Graph,
Response.Grid,
Response.Image,
Response.Loading,
Response.NotFound,
Response.Post,
Response.Privacy,
Response.Search,
Routes,
Scripts,
Server,
Svg.Builder,
Svg.Database,
Svg.Generator,
Svg.Parser,
Util.Blaze,
Util.Documentation,
Util.Happstack,
WebParsing.ArtSciParser,
WebParsing.HtmlTable,
WebParsing.Ligature,
WebParsing.ParseAll,
WebParsing.ParsingHelp,
WebParsing.PostParser,
WebParsing.PrerequisiteParsing,
WebParsing.ReqParser,
WebParsing.TimeConverter,
WebParsing.UtsgJsonParser,
WebParsing.ParsecCombinators
other-extensions:
OverloadedStrings,
DataKinds,
NoMonomorphismRestriction,
FlexibleContexts,
GADTs,
ScopedTypeVariables,
EmptyDataDecls,
FlexibleInstances,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses,
DeriveGeneric,
QuasiQuotes,
TemplateHaskell,
TypeFamilies
build-depends:
base >= 4.9,
blaze-markup,
blaze-html,
happstack-server,
blaze-svg,
bytestring,
aeson,
transformers,
base64-bytestring,
split,
containers,
unordered-containers,
random,
process >= 1.2,
diagrams-lib >= 1.3,
diagrams-svg >= 1.3.1,
lucid,
MissingH,
text,
http-conduit,
resourcet,
conduit,
persistent >= 2.1.2,
persistent-sqlite,
http-client,
network,
HTTP,
tagsoup,
regex-posix,
mtl,
persistent-template,
vector,
clay,
directory,
markdown,
system-filepath,
hslogger,
old-locale,
time,
parsec,
HaTeX,
turtle
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: app