-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added information to evolutionary.cabal.
- Loading branch information
groscoe
committed
Oct 21, 2018
1 parent
ae9008b
commit db09115
Showing
1 changed file
with
18 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,32 @@ | ||
name: evolutionary | ||
version: 0.1.0.0 | ||
-- synopsis: | ||
-- description: | ||
homepage: https://github.com/githubuser/evolutionary#readme | ||
license: BSD3 | ||
description: Please see the README on GitHub at <https://github.com/groscoe/nqueens#readme> | ||
homepage: https://github.com/groscoe/evolutionary#readme | ||
license: MIT | ||
license-file: LICENSE | ||
author: Author name here | ||
maintainer: example@example.com | ||
copyright: 2018 Author name here | ||
author: Gustavo Roscoe | ||
maintainer: gustavo@gustavoroscoe.com | ||
copyright: 2018 Gustavo Roscoe | ||
category: Web | ||
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 | ||
exposed-modules: | ||
Algorithm.Evolutionary | ||
Algorithm.Evolutionary.Internals.Population | ||
Algorithm.Evolutionary.Operators.Mutation | ||
Algorithm.Evolutionary.Operators.Recombination | ||
Algorithm.Evolutionary.Operators.Selection | ||
build-depends: | ||
MonadRandom | ||
, base >=4.7 && <5 | ||
, random-shuffle | ||
, split | ||
default-language: Haskell2010 | ||
|
||
source-repository head | ||
type: git | ||
location: https://github.com/githubuser/evolutionary | ||
location: https://github.com/groscoe/evolutionary |