-
Notifications
You must be signed in to change notification settings - Fork 1
/
stable-marriage.cabal
34 lines (31 loc) · 1.25 KB
/
stable-marriage.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
cabal-version: 2.4
-- Initial package description 'monadic-recursion-schemes.cabal' generated
-- by 'cabal init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: stable-marriage
version: 0.2.1.2
synopsis: algorithms around stable marriage
description: algorithms around stable marriage, in the field of operations research.
homepage: http://github.com/cutsea110/stable-marriage
license: BSD-3-Clause
license-file: LICENSE
author: cutsea110
maintainer: cutsea110@gmail.com
-- copyright:
category: Algorithms
extra-source-files: CHANGELOG.md
library
exposed-modules: StableMarriage.GaleShapley
other-modules: Data.Poset
Data.Poset.Internal
Data.Poset.Instances
build-depends: base >=4.12.0.0 && <4.19,
ghc-prim >= 0.4
hs-source-dirs: src
default-language: Haskell2010
test-suite stable-marriage-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
build-depends: base >=4.12.0.0, ghc-prim >=0.5.3