hs-logo-0.5: hs-logo.cabal
Name: hs-logo
Version: 0.5
Synopsis: Logo turtle graphics interpreter
Description: Interpreter for the Logo programming language,
specialised for turtle graphics.
Homepage: http://deepakjois.github.com/hs-logo
License: BSD3
License-File: LICENSE
Author: Deepak Jois
Maintainer: deepak.jois@gmail.com
Build-Type: Simple
Synopsis: Logo interpreter written in Haskell
Category: Parser
Cabal-Version: >=1.8
Data-Files: README.md
Executable hs-logo
Ghc-Options: -Wall -fno-warn-unused-do-bind
Hs-Source-Dirs: src
Main-Is: Logo.hs
Other-Modules: Logo.Types
Logo.TokenParser
Logo.Evaluator
Logo.Builtins
Logo.Builtins.IO
Logo.Builtins.Turtle
Logo.Builtins.Arithmetic
Logo.Builtins.Control
Diagrams.TwoD.Path.Turtle
Build-Depends: base >= 4.2 && < 4.6,
containers >= 0.3 && < 0.5,
mtl >= 1 && < 3.0,
parsec >= 3.0 && < 3.2,
cmdargs >= 0.6 && <= 0.9,
random >= 1.0,
parsec-numbers,
colour,
diagrams-core >= 0.5 && < 0.6,
diagrams-lib >= 0.5 && < 0.6,
diagrams-svg >= 0.3.3 && < 0.4
Test-suite turtle-tests
Type: exitcode-stdio-1.0
Hs-source-dirs: src tests
Main-is: TestSuite.hs
Ghc-options: -Wall
Other-modules: Diagrams.TwoD.Path.Turtle.Tests
Build-depends:
HUnit >= 1.2 && < 1.3,
QuickCheck >= 2.4 && < 2.5,
containers >= 0.3 && < 0.5,
test-framework >= 0.4 && < 0.7,
test-framework-hunit >= 0.2 && < 0.3,
test-framework-quickcheck2 >= 0.2 && < 0.3,
-- Copied from regular dependencies
base >= 4.2 && < 4.6,
containers >= 0.3 && < 0.5,
mtl >= 1 && < 3.0,
parsec >= 3.0 && < 3.2,
cmdargs >= 0.6 && <= 0.9,
random >= 1.0,
parsec-numbers,
colour,
diagrams-core >= 0.5 && < 0.6,
diagrams-lib >= 0.5 && < 0.6,
diagrams-svg >= 0.3.3 && < 0.4
Source-Repository head
type: git
location: https://github.com/deepakjois/hs-logo