glance/glance.cabal

84 lines
2.6 KiB
Plaintext
Raw Normal View History

2016-01-05 04:18:42 +03:00
name: glance
version: 0.1.0.0
synopsis: Glance is a visual Haskell
description: Please see README.md
homepage: https://github.com/rgleichman/glance#readme
license: GPL-3
2016-01-05 04:18:42 +03:00
license-file: LICENSE
author: Robbie Gleichman
maintainer: rgleichman@gmail.com
copyright: 2016 Robbie Gleichman
2016-01-05 04:18:42 +03:00
category: Visual Programming
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Lib
build-depends: base >= 4.7 && < 5
default-language: Haskell2010
executable glance-exe
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, glance
, diagrams
, diagrams-core
2016-01-05 04:18:42 +03:00
, diagrams-lib
, diagrams-svg
, diagrams-graphviz
, graphviz
2016-01-08 13:15:37 +03:00
, containers
, fgl
, haskell-src-exts
2016-02-06 08:07:06 +03:00
, mtl
, semigroups
2016-12-06 04:14:54 +03:00
, diagrams-rasterific
, text
, svg-builder
2016-01-05 04:18:42 +03:00
default-language: Haskell2010
Other-modules: Icons, Rendering, Types, Util, Translate, TranslateCore, DrawingColors, GraphAlgorithms
2016-01-05 04:18:42 +03:00
test-suite glance-test
type: exitcode-stdio-1.0
2016-05-10 09:45:37 +03:00
hs-source-dirs: test, app
main-is: AllTests.hs
2016-01-05 04:18:42 +03:00
build-depends: base
, glance
2016-05-10 09:45:37 +03:00
, HUnit
, diagrams
, diagrams-core
, diagrams-lib
, diagrams-svg
, diagrams-graphviz
, graphviz
, containers
, fgl
, haskell-src-exts
, mtl
, semigroups
, text
, svg-builder
2016-01-05 04:18:42 +03:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
2016-12-13 05:47:12 +03:00
Other-modules: Icons
, UnitTests
, VisualRenderingTests
, VisualTranslateTests
, VisualGraphAlgorithmTests
, Rendering
, Types
, Util
, Translate
, TranslateCore
, DrawingColors
, GraphAlgorithms
2016-05-10 09:45:37 +03:00
2016-01-05 04:18:42 +03:00
source-repository head
type: git
location: https://github.com/rgleichman/glance