summaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
authorDenise sur Lya <sekhmet@lya>2021-07-27 14:37:33 +0200
committerDenise sur Lya <sekhmet@lya>2021-07-27 14:37:33 +0200
commitea3e2d07911b2f4d3ff044c4a7bfd4e8c77be937 (patch)
tree74f82bb71cd18b387892717c5055cc2c56d2c135 /config.py
downloadbingo-ea3e2d07911b2f4d3ff044c4a7bfd4e8c77be937.tar.gz
bingo-ea3e2d07911b2f4d3ff044c4a7bfd4e8c77be937.tar.zst
bingo-ea3e2d07911b2f4d3ff044c4a7bfd4e8c77be937.zip
création du projet...HEADmaster
Diffstat (limited to 'config.py')
-rw-r--r--config.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/config.py b/config.py
new file mode 100644
index 0000000..deb461a
--- /dev/null
+++ b/config.py
@@ -0,0 +1,24 @@
1#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3"""
4Configuration générale
5"""
6
7# Configuration par défaut
8DEFAUT = {}
9
10DEFAUT["titre"] = "Le bingo de l'allaitement"
11
12DEFAUT["nblignes"] = 4
13DEFAUT["nbcolonnes"] = 3
14DEFAUT["nbcasesvides"] = 0
15
16
17# Configuration
18
19CONFIG = {}
20CONFIG["lmax_titre"] = 50
21CONFIG["maxlignes"] = 20
22CONFIG["minlignes"] = 1
23CONFIG["maxcolonnes"] = 20
24CONFIG["mincolonnes"] = 1 \ No newline at end of file