aboutsummaryrefslogtreecommitdiff
path: root/weather.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'weather.cabal')
-rw-r--r--weather.cabal24
1 files changed, 24 insertions, 0 deletions
diff --git a/weather.cabal b/weather.cabal
new file mode 100644
index 0000000..610c58c
--- /dev/null
+++ b/weather.cabal
@@ -0,0 +1,24 @@
+cabal-version: 2.4
+name: weather
+version: 0.1.0.0
+synopsis: A simple server serving Victorian weather in both html and json.
+
+description: A simple weather server using BoM api to serve weather info
+ for the next 7 days in Victoria, in both html and json formats.
+
+bug-reports: id@ypei.org
+
+license: AGPL-3.0-or-later
+author: Yuchen Pei
+maintainer: Yuchen Pei <id@ypei.org>
+copyright: 2022 Yuchen Pei
+
+executable weather
+ main-is: Weather.hs
+
+ -- other-modules:
+
+ build-depends:
+ base, containers, text, time, aeson, process, xml, yesod
+ hs-source-dirs: .
+ default-language: Haskell2010