forked from Courseography/courseography
-
Notifications
You must be signed in to change notification settings - Fork 0
/
courseography.cabal
170 lines (167 loc) · 3.56 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
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: [email protected]
-- copyright:
category: Planning
build-type: Custom
cabal-version: >=1.24
custom-setup
setup-depends:
base >= 4.9,
Cabal >= 1.24,
process >= 1.2,
directory
test-suite ParserTests
main-is: ParserTests/tests.hs
other-modules:
Database.Requirement,
ParserTests.ParserTests,
WebParsing.ReqParser
Type: exitcode-stdio-1.0
build-depends:
base >=4.6,
Cabal >= 1.16.0,
HUnit,
mtl,
parsec,
QuickCheck,
test-framework,
test-framework-hunit,
test-framework-quickcheck2
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: app
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,
DynamicGraphs.WriteRunDot,
DynamicGraphs.GraphGenerator,
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.Ligature,
WebParsing.ParseAll,
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,
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,
HUnit,
turtle
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: app