Initial commit
This commit is contained in:
commit
35519b8fda
9 changed files with 232 additions and 0 deletions
42
orbit.cabal
Normal file
42
orbit.cabal
Normal file
|
@ -0,0 +1,42 @@
|
|||
name: orbit
|
||||
version: 0.1.0.0
|
||||
-- synopsis:
|
||||
-- description:
|
||||
homepage: https://github.com/dlozeve/orbit#readme
|
||||
license: BSD3
|
||||
license-file: LICENSE
|
||||
author: Dimitri Lozeve
|
||||
maintainer: dimitri.lozeve@gmail.com
|
||||
copyright: 2017 Dimitri Lozeve
|
||||
category: Science
|
||||
build-type: Simple
|
||||
extra-source-files: README.md
|
||||
cabal-version: >=1.10
|
||||
|
||||
library
|
||||
hs-source-dirs: src
|
||||
exposed-modules: Lib
|
||||
build-depends: base >= 4.7 && < 5
|
||||
, linear
|
||||
default-language: Haskell2010
|
||||
|
||||
executable orbit-exe
|
||||
hs-source-dirs: app
|
||||
main-is: Main.hs
|
||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||||
build-depends: base
|
||||
, orbit
|
||||
default-language: Haskell2010
|
||||
|
||||
test-suite orbit-test
|
||||
type: exitcode-stdio-1.0
|
||||
hs-source-dirs: test
|
||||
main-is: Spec.hs
|
||||
build-depends: base
|
||||
, orbit
|
||||
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
||||
default-language: Haskell2010
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/githubuser/orbit
|
Loading…
Add table
Add a link
Reference in a new issue