packages feed

off-simple-0.1: off-simple.cabal

Name:                off-simple
Version:             0.1
Synopsis:            A parser for simplified-syntax OFF files
Description:         A simple datatype and parser for 3D OFF files, 
                     loosely based on 
                     <http://people.sc.fsu.edu/~jburkardt/data/off/off.html>, 
                     but uses the file header to determine whether the object's
                     faces contain color values. 
Homepage:            https://github.com/acfoltzer/off-simple
Bug-reports:         https://github.com/acfoltzer/off-simple/issues
License:             BSD3
License-file:        LICENSE
Author:              Adam C. Foltzer
Maintainer:          acfoltzer@gmail.com
Category:            Graphics
Build-type:          Simple
Cabal-version:       >=1.8
Extra-source-files:  tests/Main.hs
                     tests/TestData.hs
                     tests/off-simple-tests.cabal
                     tests/Setup.hs
                     tests/samples/cube.off
                     tests/samples/cube.offc
                     tests/samples/dodec.off
                     tests/samples/mushroom.off
                     tests/samples/tetra.off
                     tests/samples/tetra.offc

source-repository head
  type:     git
  location: git://github.com/acfoltzer/off-simple.git

Library
  exposed-modules:   Graphics.Formats.OFF.Simple
  build-depends:     base == 4.*,
                     parsec3 == 1.*,
                     vector == 0.9.*