-
Notifications
You must be signed in to change notification settings - Fork 0
/
circuit.cabal
34 lines (32 loc) · 1.04 KB
/
circuit.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: circuit
version: 0.1.0.0
synopsis: Naive Circuit Simulation
-- description:
homepage: https://gitlab.imn.htwk-leipzig.de/waldmann/circuit
license: GPL-3
license-file: LICENSE
author: Johannes Waldmann
maintainer: [email protected]
-- copyright:
category: Math
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
cabal-version: >=1.10
library
exposed-modules: Circuit
Circuit.Simulate
Circuit.Data
Circuit.Vector
Circuit.Unit
Circuit.Function
Circuit.Plot
-- other-modules:
-- other-extensions:
build-depends: base, containers, gnuplot, hmatrix
hs-source-dirs: src
default-language: Haskell2010
test-suite render-bp
hs-source-dirs: test
type: exitcode-stdio-1.0
main-is: BP.hs
build-depends: base, circuit, gnuplot