forked from Courseography/courseography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
courseography.cabal
182 lines (178 loc) · 3.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
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
cabal-version: 3.0
name: courseography
version: 0.5.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
test-suite RequirementTests
main-is: RequirementTests/tests.hs
other-modules:
Database.DataType,
Database.Requirement,
Database.Tables,
RequirementTests.PostParserTests,
RequirementTests.ReqParserTests,
RequirementTests.PreProcessingTests,
RequirementTests.ModifierTests,
WebParsing.ParsecCombinators,
WebParsing.PostParser,
WebParsing.ReqParser,
DynamicGraphs.GraphNodeUtils
Type: exitcode-stdio-1.0
build-depends:
aeson,
base >=4.14,
Cabal >= 1.16.0,
HUnit,
mtl,
parsec,
persistent,
persistent-sqlite,
QuickCheck,
split,
tagsoup,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
text,
time,
unordered-containers
default-extensions:
OverloadedStrings,
ScopedTypeVariables
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: app
executable courseography
main-is: Main.hs
other-modules:
Config,
Css.Constants,
Controllers.Course,
Controllers.Graph,
Database.CourseInsertion,
Database.CourseQueries,
Database.CourseVideoSeed,
Database.Requirement,
Database.DataType,
Database.Database,
Database.Tables,
DynamicGraphs.CourseFinder,
DynamicGraphs.WriteRunDot,
DynamicGraphs.GraphGenerator,
DynamicGraphs.GraphNodeUtils,
DynamicGraphs.GraphOptions,
Export.GetImages,
Export.ImageConversion,
Export.LatexGenerator,
Export.PdfGenerator,
Export.TimetableImageCreator,
MasterTemplate,
Response,
Response.About,
Response.Calendar,
Response.Draw,
Response.Export,
Response.Grid,
Response.Image,
Response.Loading,
Response.NotFound,
Response.Post,
Response.Privacy,
Response.Search,
Response.Generate,
Routes,
Scripts,
Server,
Svg.Builder,
Svg.Database,
Svg.Generator,
Svg.Parser,
Util.Blaze,
Util.Documentation,
Util.Happstack,
WebParsing.ArtSciParser,
WebParsing.Ligature,
WebParsing.PostParser,
WebParsing.ReqParser,
WebParsing.UtsgJsonParser,
WebParsing.ParsecCombinators
-- These are compiler extensions used for every module
default-extensions:
OverloadedStrings,
PartialTypeSignatures,
ScopedTypeVariables
other-extensions:
DeriveGeneric,
EmptyDataDecls,
FlexibleContexts,
FlexibleInstances,
GADTs,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses,
QuasiQuotes,
TemplateHaskell,
TypeFamilies
build-depends:
base >= 4.9,
blaze-markup,
blaze-html,
happstack-server,
blaze-svg,
bytestring,
aeson,
transformers,
base64-bytestring,
split,
fgl,
graphviz,
filepath,
containers,
unordered-containers,
random,
process >= 1.2,
diagrams-lib >= 1.3,
diagrams-svg >= 1.3.1,
lucid,
MissingH,
text,
http-conduit,
http-types,
resourcet,
conduit,
persistent >= 2.1.2,
persistent-sqlite,
http-client,
network,
HTTP,
tagsoup,
regex-posix,
mtl,
persistent-template,
vector,
directory,
markdown,
system-filepath,
hslogger,
old-locale,
time,
parsec,
HaTeX
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: app
extra-packages: hlint