]> Git — Sourcephile - majurity.git/blob - hjugement.cabal
Fix majorityValue: update the middlemost correctly.
[majurity.git] / hjugement.cabal
1 name: hjugement
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 2.0.0.20180903
6 category: Politic
7 synopsis: Majority Judgment.
8 description:
9 A library for the <http://libgen.io/book/index.php?md5=BF67AA4298C1CE7633187546AA53E01D Majority Judgment>.
10 .
11 The Majority Judgment is <http://libgen.io/book/index.php?md5=BF67AA4298C1CE7633187546AA53E01D judged by its authors>
12 to be “superior to any known method of voting
13 and to any known method of judging competitions,
14 in theory and in practice”.
15 .
16 For introductory explanations, you can read:
17 .
18 * the accompanying README.md file (en),
19 * 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),
20 * the dedicated web sites: <https://mieuxvoter.fr> and <https://lechoixcommun.fr>,
21 * or watch: Rida Laraki's conference: <https://mixitconf.org/2017/majority-judgment Le Jugement Majoritaire> (fr).
22 .
23 For comprehensive studies, you can read Michel Balinski and Rida Laraki's:
24 .
25 * textbook: <http://libgen.io/book/index.php?md5=BF67AA4298C1CE7633187546AA53E01D Majority Judgment: Measuring, Ranking, and Electing> (en)
26 * cahier: <http://www.lamsade.dauphine.fr/sites/default/IMG/pdf/cahier_377.pdf Majority Judgment vs. Majority Rule> (en)
27 * paper: <https://1007421605497013616-a-1802744773732722657-s-sites.googlegroups.com/site/ridalaraki/xfiles/BalinskiLarakiJudgeDontVotecahierderecherche2010-27.pdf Judge : Don't Vote!> (en)
28 * 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)
29 extra-doc-files: README.md
30 license: GPL-3
31 license-file: COPYING
32 stability: experimental
33 author: Julien Moutinho <julm+hjugement@autogeree.net>
34 maintainer: Julien Moutinho <julm+hjugement@autogeree.net>
35 bug-reports: Julien Moutinho <julm+hjugement@autogeree.net>
36 -- homepage:
37
38 build-type: Simple
39 cabal-version: 1.24
40 tested-with: GHC==8.4.3
41 extra-source-files:
42 stack.yaml
43 extra-tmp-files:
44
45 Source-Repository head
46 location: git://git.autogeree.net/hjugement
47 type: git
48
49 Library
50 exposed-modules:
51 Majority.Judgment
52 Majority.Merit
53 Majority.Section
54 Majority.Value
55 default-language: Haskell2010
56 default-extensions:
57 NoImplicitPrelude
58 NamedFieldPuns
59 ghc-options:
60 -Wall
61 -Wincomplete-uni-patterns
62 -Wincomplete-record-updates
63 -fno-warn-tabs
64 -- -fhide-source-paths
65 build-depends:
66 base >= 4.6 && < 5
67 , containers >= 0.5
68 , hashable >= 1.2.6
69 -- , transformers >= 0.5.2
70 , unordered-containers >= 0.2.8
71
72 Test-Suite hjugement-test
73 type: exitcode-stdio-1.0
74 hs-source-dirs: test
75 main-is: Main.hs
76 other-modules:
77 HUnit
78 QuickCheck
79 Types
80 default-language: Haskell2010
81 default-extensions:
82 ImplicitPrelude
83 ghc-options:
84 -Wall
85 -Wincomplete-uni-patterns
86 -Wincomplete-record-updates
87 -fno-warn-tabs
88 -- -fhide-source-paths
89 build-depends:
90 hjugement
91 , base >= 4.6 && < 5
92 , containers >= 0.5
93 , hashable >= 1.2.6
94 , QuickCheck >= 2.0
95 , random >= 1.1
96 , tasty >= 0.11
97 , tasty-hunit >= 0.9
98 , tasty-quickcheck
99 , text >= 1.2
100 , transformers >= 0.5
101 , unordered-containers >= 0.2.8