~lesuisse-dev/joliebulle/outil-alcool

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/python
#­*­coding: utf­8 -­*­


from distutils.core import setup

setup(name = "joliebulle",
      version = "2.7",
      description = "JolieBulle, logiciel de brassage libre",
      author = "Pierre Tavares",
      author_email = "contact.314r@gmail.com",
      url = "http://joliebulle.tuxfamily.org",
      py_modules = [],
      data_files = [("joliebulle", ["base.py",
                                     "brewCalc.py",
                                     "densimetre_ui.py",
                                     "editdivers.py",
                                     "editgrain.py",
                                     "edithoublon.py",
                                     "editlevures.py",
                                     "editorG_ui.py",
                                     "editorH_ui.py",
                                     "editorM_ui.py",
                                     "editorY_ui.py",
                                     "exportHTML.py",
                                     "exportBBCode.py"
                                     "export.py",
                                     "exportMash.py",
                                     "globals.py",
                                     "home.py",
                                     "importMashXml.py",
                                     "joliebulle_en.qm",
                                     "main.py",
                                     "mashEditor_ui.py",
                                     "mashEditWindow.py",
                                     "outilAlc.py",
                                     "outilAlc_ui.py",
                                     "outilDens.py",
                                     "outilDilution.py",
                                     "outilDilution_ui.py",
                                     "outilEvaporation.py",
                                     "outilEvaporation_ui.py",
                                     "outilPaliers.py",
                                     "outilPaliers_ui.py",
                                     "preferences.py",
                                     "preferences_ui.py",
                                     "reader.py",
                                     "ressources_rc.py",
                                     "settings.py",
                                     "stepAdjust_ui.py",
                                     "stepAdjustWindow.py",
                                     "stepEditor_ui.py",
                                     "stepEditWindow.py",
                                     "database.xml",
                                     "mash.xml",
                                     "launch.sh",
                                     "README",
                                     "COPYING"
                                     ]),
                      ("applications", ["joliebulle.desktop"]),
                      ("joliebulle/Samples", ["Samples/Blanche.xml",
                                              "Samples/SMASH Amarillo.xml"]),
                      ("joliebulle/Images", ["Images/application-exit.png",
                                            "Images/add.png",
                                            "Images/bulle.png",
                                            "Images/brewday.png",
                                            "Images/config.png",
                                            "Images/document-open.png",
                                            "Images/document-properties.png",
                                            "Images/edit.png",
                                            "Images/help-about.png",
                                            "Images/library.png",
                                            "Images/document-open.svg",
                                            "Images/more.png",
                                            "Images/print.png",
                                            "Images/reload.png",
                                            "Images/remove.png",
                                            "Images/save.png",])
                                                    ],

      scripts = ["joliebulle"],
      long_description = ""          
      )