-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvg.cabal
36 lines (32 loc) · 1.09 KB
/
svg.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
-- Initial svg.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: svg
version: 0.1.0.0
synopsis: Command line tool for generating SVGs
homepage: https://github.com/janeymunoz/svg.git
license: BSD3
license-file: LICENSE
author: Janey Muñoz
maintainer: janeemunoz@gmail.com
copyright: Janey Muñoz 2020
category: Graphics
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable svg
main-is: Main.hs
other-modules: Svg
, Parser
, Types
build-depends: base < 5
, containers
, directory
, filepath
, optparse-applicative
, optparse-text
, protolude
, random
, svg-builder
, text
hs-source-dirs: src
default-language: Haskell2010