packages feed

plot-lab-0.0.1.9: plot-lab.cabal

Name:                plot-lab
Version:             0.0.1.9
License:             GPL-2
License-file:        LICENSE
Author:              Sumit Sahrawat
Maintainer:          sumit.sahrawat.apm13@iitbhu.ac.in
Stability:           experimental
Homepage:            https://github.com/sumitsahrawat/plot-lab
Synopsis:            A plotting tool with Mathematica like Manipulation abilities
Description:
            Mathematica has a nice plotting feature that allows for plotting of functions that depend on more than one variable, and then allows changing the value
            of the extra parameters to see real-time animated changes in the plot. This application attempts to provide the same for 2-D plots for free.

Category:            Math

Tested-with:         GHC==7.8.3
Cabal-version:       >=1.18
Build-type:          Simple

Extra-source-files:  README.md
Data-dir:            ui
Data-files:          main-window.glade
                   , plot-window.glade
                   , button-panel.glade

executable plot-lab
  Main-is:             Main.hs
  Build-depends:       base >=4.7 && <4.8
                     , colour >=2.3 && <2.4
                     , plot >=0.2 && <0.3
                     , gtk >=0.13 && <0.14
                     , hmatrix >=0.16 && <0.17
                     , text >=1.2 && <1.3
                     , vector >=0.10.12.2 && <0.10.13.0

  hs-source-dirs:      src
  other-modules:       Paths_plot_lab
                     , PlotLab.Events
                     , PlotLab.FigureSettings
                     , PlotLab.Main

  ghc-options:         -Wall
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/sumitsahrawat/plot-lab.git