smoothie-0.3: smoothie.cabal
name: smoothie
version: 0.3
synopsis: Smooth curves via several splines and polynomials.
description: This package exports several splines and curves you can use
to interpolate points in between.
homepage: https://github.com/phaazon/smoothie
license: BSD3
license-file: LICENSE
author: Dimitri Sabadie <dimitri.sabadie@gmail.com>
maintainer: Dimitri Sabadie <dimitri.sabadie@gmail.com>
copyright: Dimitri Sabadie
category: Data
build-type: Simple
cabal-version: >= 1.10
data-files: CHANGELOG.md
library
ghc-options: -W -Wall -O2 -funbox-strict-fields
default-extensions: DeriveFoldable
, DeriveFunctor
, DeriveTraversable
exposed-modules: Data.Spline
, Data.Spline.Curve
, Data.Spline.Key
build-depends: base >= 4.7 && < 5.0
, linear >= 1.16 && < 1.19
, vector >= 0.10 && < 0.11
hs-source-dirs: src
default-language: Haskell2010