]> Git — Sourcephile - majurity.git/blob - hjugement.cabal
Add Hjugement.Section.
[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: 1.1.0.20180525
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 the README.md (en) and/or
18 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)
19 .
20 Or watch: Rida Laraki's conference: <https://mixitconf.org/2017/majority-judgment Le Jugement Majoritaire> (fr)
21 .
22 For comprehensive studies, you can read Michel Balinski and Rida Laraki's:
23 .
24 * textbook: <http://libgen.io/book/index.php?md5=BF67AA4298C1CE7633187546AA53E01D Majority Judgment: Measuring, Ranking, and Electing> (en)
25 * cahier: <http://www.lamsade.dauphine.fr/sites/default/IMG/pdf/cahier_377.pdf Majority Judgment vs. Majority Rule> (en)
26 * paper: <https://1007421605497013616-a-1802744773732722657-s-sites.googlegroups.com/site/ridalaraki/xfiles/BalinskiLarakiJudgeDontVotecahierderecherche2010-27.pdf Judge : Don't Vote!> (en)
27 * 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)
28 extra-doc-files: README.md
29 license: GPL-3
30 license-file: COPYING
31 stability: experimental
32 author: Julien Moutinho <julm+hjugement@autogeree.net>
33 maintainer: Julien Moutinho <julm+hjugement@autogeree.net>
34 bug-reports: Julien Moutinho <julm+hjugement@autogeree.net>
35 -- homepage:
36
37 build-type: Simple
38 cabal-version: >= 1.18
39 tested-with: GHC==8.0.2
40 extra-source-files:
41 stack.yaml
42 extra-tmp-files:
43
44 Source-Repository head
45 location: git://git.autogeree.net/hjugement
46 type: git
47
48 Library
49 exposed-modules:
50 Hjugement
51 Hjugement.MJ
52 Hjugement.Section
53 default-language: Haskell2010
54 default-extensions:
55 NoImplicitPrelude
56 ghc-options:
57 -Wall
58 -Wincomplete-uni-patterns
59 -Wincomplete-record-updates
60 -fno-warn-tabs
61 -- -fhide-source-paths
62 build-depends:
63 base >= 4.6 && < 5
64 , containers >= 0.5
65 , hashable >= 1.2.6
66 , unordered-containers >= 0.2.8
67
68 Test-Suite hjugement-test
69 type: exitcode-stdio-1.0
70 hs-source-dirs: test
71 main-is: Main.hs
72 other-modules:
73 HUnit
74 QuickCheck
75 Types
76 default-language: Haskell2010
77 default-extensions:
78 ghc-options:
79 -Wall
80 -Wincomplete-uni-patterns
81 -Wincomplete-record-updates
82 -fno-warn-tabs
83 -- -fhide-source-paths
84 build-depends:
85 hjugement
86 , base >= 4.6 && < 5
87 , containers >= 0.5
88 , hashable >= 1.2.6
89 , QuickCheck >= 2.0
90 , tasty >= 0.11
91 , tasty-hunit >= 0.9
92 , tasty-quickcheck
93 , text >= 1.2
94 , transformers >= 0.5
95 , unordered-containers >= 0.2.8