]> Git — Sourcephile - majurity.git/blob - hjugement.cabal
init
[majurity.git] / hjugement.cabal
1 author: Julien Moutinho <julm+hjugement@autogeree.net>
2 build-type: Simple
3 cabal-version: >= 1.18
4 category: Language
5 description:
6 A library for the <http://libgen.io/book/index.php?md5=BF67AA4298C1CE7633187546AA53E01D Majority Judgment>.
7 .
8 The Majority Judgment is <http://libgen.io/book/index.php?md5=BF67AA4298C1CE7633187546AA53E01D judged by its authors>
9 to be “superior to any known method of voting
10 and to any known method of judging competitions,
11 in theory and in practice”.
12 .
13 For introductory explanations, you can read:
14 the README.md (en) and/or
15 Marjolaine Leray's comic: <https://www.lechoixcommun.fr/articles/Vous_reprendrez_bien_un_peu_de_democratie-2.html Vous reprendrez bien un peu de démocratie ?> (fr)
16 .
17 Or watch: Rida Laraki's conference: <https://mixitconf.org/2017/majority-judgment Le Jugement Majoritaire> (fr)
18 .
19 For comprehensive studies, you can read Michel Balinski and Rida Laraki's:
20 .
21 * textbook: <http://libgen.io/book/index.php?md5=BF67AA4298C1CE7633187546AA53E01D Majority Judgment: Measuring, Ranking, and Electing> (en)
22 * cahier: <http://www.lamsade.dauphine.fr/sites/default/IMG/pdf/cahier_377.pdf Majority Judgment vs. Majority Rule> (en)
23 * paper: <https://1007421605497013616-a-1802744773732722657-s-sites.googlegroups.com/site/ridalaraki/xfiles/BalinskiLarakiJudgeDontVotecahierderecherche2010-27.pdf Judge : Don't Vote!> (en)
24 * article: <https://www.cairn.info/revue-francaise-d-economie-2012-4-page-11.htm Jugement majoritaire versus vote majoritaire (via les présidentielles 2011-2012)> (fr)
25 extra-source-files:
26 extra-doc-files: README.md
27 extra-tmp-files:
28 license: GPL-3
29 license-file: COPYING
30 maintainer: Julien Moutinho <julm+hjugement@autogeree.net>
31 name: hjugement
32 stability: experimental
33 synopsis: Majority Judgment.
34 tested-with: GHC==8.0.2
35 version: 1.0.0.20170804
36
37 Source-Repository head
38 location: git://git.autogeree.net/hjugement
39 type: git
40
41 Library
42 exposed-modules:
43 Hjugement
44 Hjugement.Majority
45 default-language: Haskell2010
46 default-extensions:
47 ghc-options: -Wall -fno-warn-tabs
48 build-depends:
49 base >= 4.6 && < 5
50 , containers > 0.5
51
52 Test-Suite hjugement-test
53 type: exitcode-stdio-1.0
54 default-language: Haskell2010
55 default-extensions:
56 ghc-options: -Wall -fno-warn-tabs
57 hs-source-dirs: test
58 main-is: Main.hs
59 other-modules:
60 HUnit
61 QuickCheck
62 Types
63 build-depends:
64 base >= 4.6 && < 5
65 , containers >= 0.5 && < 0.6
66 , hjugement
67 , QuickCheck >= 2.0
68 , tasty >= 0.11
69 , tasty-hunit
70 , tasty-quickcheck
71 , text
72 , transformers >= 0.4 && < 0.6