-
Notifications
You must be signed in to change notification settings - Fork 2
/
img2ascii.cabal
29 lines (27 loc) · 982 Bytes
/
img2ascii.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
-- Initial img2ascii.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: img2ascii
version: 0.1.0.0
synopsis: Commandline tool for converting images to ASCII
-- description:
homepage: http://github.com/Drezil/img2ascii
license: MIT
license-file: LICENSE
author: Stefan Dresselhaus
maintainer: [email protected]
-- copyright:
category: Text
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable img2ascii
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.9,
JuicyPixels,
vector,
optparse-applicative,
bytestring
hs-source-dirs: src
default-language: Haskell2010