-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathcourseography.cabal
228 lines (223 loc) · 4.79 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
cabal-version: 3.0
name: courseography
version: 0.6.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.teach.cs.toronto.edu
license: GPL-3.0-or-later
license-file: LICENSE
author: David Liu
maintainer: [email protected]
-- copyright:
category: Planning
build-type: Custom
custom-setup
setup-depends:
base >= 4.14,
Cabal >= 3.0,
process >= 1.2,
directory
library
exposed-modules:
Config,
Controllers.Course,
Database.CourseInsertion,
Database.CourseQueries,
Database.CourseVideoSeed,
Database.Database,
Database.DataType,
Database.Requirement,
Database.Tables,
DynamicGraphs.GraphNodeUtils,
Svg.Builder,
Util.Happstack,
WebParsing.ArtSciParser,
WebParsing.ParsecCombinators,
WebParsing.PostParser,
WebParsing.ReqParser,
build-depends:
aeson,
base >=4.14,
bytestring,
Cabal >= 1.16.0,
containers,
directory,
happstack-server,
hlint,
hslogger,
http-conduit,
http-types,
MissingH,
monad-logger,
mtl,
parsec,
persistent,
persistent-sqlite,
resourcet,
split,
system-filepath,
tagsoup,
text,
time,
transformers,
unordered-containers,
yaml
default-extensions:
OverloadedStrings,
ScopedTypeVariables
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: app
test-suite Tests
main-is: Main.hs
other-modules:
Controllers.CourseControllerTests,
RequirementTests.ModifierTests,
RequirementTests.PostParserTests,
RequirementTests.PreProcessingTests,
RequirementTests.ReqParserTests,
RequirementTests.RequirementTests,
TestHelpers
Type: exitcode-stdio-1.0
build-depends:
aeson,
base >=4.14,
bytestring,
Cabal >= 1.16.0,
containers,
courseography,
directory,
happstack-server,
HUnit,
parsec,
persistent-sqlite,
QuickCheck,
tagsoup,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
text
default-extensions:
OverloadedStrings,
ScopedTypeVariables
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: backend-test
executable courseography
main-is: Main.hs
other-modules:
Config,
Controllers.Course,
Controllers.Graph,
Controllers.Generate,
Controllers.Timetable,
Css.Constants,
Database.CourseInsertion,
Database.CourseQueries,
Database.CourseVideoSeed,
Database.Database,
Database.DataType,
Database.Requirement,
Database.Tables,
DynamicGraphs.CourseFinder,
DynamicGraphs.GraphGenerator,
DynamicGraphs.GraphNodeUtils,
DynamicGraphs.GraphOptions,
DynamicGraphs.WriteRunDot,
Export.GetImages,
Export.ImageConversion,
Export.LatexGenerator,
Export.PdfGenerator,
Export.TimetableImageCreator,
MasterTemplate,
Response,
Response.About,
Response.Draw,
Response.Image,
Response.Loading,
Response.NotFound,
Response.Post,
Response.Search,
Routes,
Scripts,
Server,
Svg.Builder,
Svg.Database,
Svg.Generator,
Svg.Parser,
Util.Blaze,
Util.Documentation,
Util.Happstack,
WebParsing.ArtSciParser,
WebParsing.Ligature,
WebParsing.ParsecCombinators,
WebParsing.PostParser,
WebParsing.ReqParser,
WebParsing.UtsgJsonParser
-- These are compiler extensions used for every module
default-extensions:
OverloadedStrings,
ScopedTypeVariables
other-extensions:
DeriveGeneric,
EmptyDataDecls,
FlexibleContexts,
FlexibleInstances,
GADTs,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses,
QuasiQuotes,
TemplateHaskell,
TypeFamilies
build-depends:
aeson,
base >= 4.9,
base64-bytestring,
blaze-html,
blaze-markup,
blaze-svg,
bytestring,
conduit,
containers,
diagrams-lib >= 1.3,
diagrams-svg >= 1.3.1,
directory,
fgl,
filepath,
graphviz,
happstack-server,
HaTeX,
hlint,
hslogger,
HTTP,
http-client,
http-conduit,
http-types,
lucid,
markdown,
MissingH,
monad-logger,
mtl,
network,
old-locale,
parsec,
persistent >= 2.1.2,
persistent-sqlite,
persistent-template,
process >= 1.2,
random,
regex-posix,
resourcet,
split,
system-filepath,
tagsoup,
text,
time,
transformers,
unordered-containers,
vector,
yaml
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: app