cabal-version: 3.0 name: majurity-judgment maintainer: mailto:~julm/majurity@todo.hut.sourcephile.fr bug-reports: https://todo.hut.sourcephile.fr/~julm/majurity homepage: https://git.hut.sourcephile.fr/~julm/majurity author: Julien Moutinho copyright: Julien Moutinho license: AGPL-3.0-or-later -- PVP: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change version: 2.0.2.20190414 stability: experimental category: Politic synopsis: Majority Judgment voting system. description: A library for the . . The Majority Judgment is to be “superior to any known method of voting and to any known method of judging competitions, in theory and in practice”. . For introductory explanations, you can read: . * the accompanying ReadMe.md file (en), * Marjolaine Leray's comic: (fr), * the dedicated web sites: (fr) and (fr), * a press article I've written: (fr), * or watch: Rida Laraki's conference: (fr). . For comprehensive studies, you can read Michel Balinski and Rida Laraki's: . * textbook: (en) * cahier: (en) * paper: (en) * article: (fr). extra-doc-files: ReadMe.md extra-source-files: extra-tmp-files: build-type: Simple tested-with: GHC==8.10.4 source-repository head type: git location: https://git.hut.sourcephile.fr/~julm/majurity library hs-source-dirs: src exposed-modules: Majurity.Judgment Majurity.Judgment.Gauge Majurity.Judgment.Merit Majurity.Judgment.Rank Majurity.Judgment.Section Majurity.Judgment.Value default-language: Haskell2010 default-extensions: NoImplicitPrelude NamedFieldPuns ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -fno-warn-tabs -- -fhide-source-paths build-depends: base >= 4.6 && < 5 , containers >= 0.5 , hashable >= 1.2.6 -- , transformers >= 0.5.2 , unordered-containers >= 0.2.8 test-suite majurity-judgment-tests type: exitcode-stdio-1.0 hs-source-dirs: tests main-is: Main.hs other-modules: HUnit HUnit.Merit HUnit.Rank HUnit.Section HUnit.Utils HUnit.Value QuickCheck QuickCheck.Gauge QuickCheck.Merit QuickCheck.Rank QuickCheck.Utils QuickCheck.Value Types default-language: Haskell2010 default-extensions: NoImplicitPrelude FlexibleInstances ScopedTypeVariables TypeFamilies ghc-options: -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -fno-warn-tabs -- -fhide-source-paths build-depends: majurity-judgment , base >= 4.6 && < 5 , containers >= 0.5 , hashable >= 1.2.6 , QuickCheck >= 2.0 , random >= 1.1 , tasty >= 0.11 , tasty-hunit >= 0.9 , tasty-quickcheck , text >= 1.2 , transformers >= 0.5 , unordered-containers >= 0.2.8