2015-11-20 22:02:24 +00:00
|
|
|
-- 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: sdressel@techfak.uni-bielefeld.de
|
|
|
|
-- 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:
|
2016-01-06 22:37:50 +00:00
|
|
|
build-depends: base >=4.7 && <4.9,
|
2015-11-21 00:53:20 +00:00
|
|
|
JuicyPixels,
|
2015-11-21 20:28:23 +00:00
|
|
|
vector,
|
|
|
|
optparse-applicative,
|
|
|
|
bytestring
|
2015-11-20 22:02:24 +00:00
|
|
|
hs-source-dirs: src
|
2015-11-21 00:53:20 +00:00
|
|
|
default-language: Haskell2010
|