packages feed

STL-0.1.0.0: STL.cabal

-- Initial STL.cabal generated by cabal init.  For further documentation, 
-- see http://haskell.org/cabal/users-guide/

name:                STL
version:             0.1.0.0
synopsis:            STL 3D geometry format parsing and pretty-printing
description:         STL is a simple file format for representing 3D
                     objects as the triangles which form their
                     surface.  It is common in 3D printing workflows.

                     This library provides parsing and serialization
                     to the ASCII STL format.  The binary STL format
                     is not yet supported.
homepage:            http://github.com/bergey/STL
license:             BSD3
license-file:        LICENSE
author:              Daniel Bergey
maintainer:          bergey@alum.mit.edu
-- copyright:           
category:            Graphics
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10
bug-reports:         http://github.com/bergey/STL/issues

library
  exposed-modules:  Graphics.Formats.STL,
                    Graphics.Formats.STL.Types,
                    Graphics.Formats.STL.Parser,
                    Graphics.Formats.STL.Printer
  -- other-modules:       
  -- other-extensions:    
  build-depends:    base >=4.6 && <4.7,
                    pretty >= 1.1 && < 1.2,
                    attoparsec >= 0.11 && < 0.12,
                    text >= 1.0 && < 1.2
  hs-source-dirs:   src     
  default-language: Haskell2010