~semplice-devs/linstaller/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: g7
  • Date: 2011-12-29 20:44:19 UTC
  • Revision ID: morarossa@gmail.com-20111229204419-v3isjbxql7j17umu
Tags: 2.10.1
setup.py: ship correctly all modules

released 2.10.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
from distutils.core import setup
7
7
 
8
8
setup(name='linstaller',
9
 
      version='2.10.0',
 
9
      version='2.10.1',
10
10
      description='Modular, preseedable, GNU/Linux distribution installer',
11
11
      author='Eugenio Paolantonio and the Semplice Team',
12
12
      author_email='me@medesimo.eu',
17
17
      "linstaller.core.libmodules.partdisks",
18
18
      "linstaller.core.libmodules.unsquash",
19
19
      "linstaller.modules",
 
20
      
20
21
      "linstaller.modules.bootloader",
 
22
      "linstaller.modules.bootloader.front",
 
23
      "linstaller.modules.bootloader.inst",
 
24
      
21
25
      "linstaller.modules.debian",
 
26
      "linstaller.modules.debian.inst",
 
27
      
22
28
      "linstaller.modules.clean",
 
29
      "linstaller.modules.clean.inst",
 
30
      
23
31
      "linstaller.modules.end",
 
32
      "linstaller.modules.end.front",
 
33
      
24
34
      "linstaller.modules.fstab",
 
35
      "linstaller.modules.fstab.inst",
 
36
      
25
37
      "linstaller.modules.language",
 
38
      "linstaller.modules.language.front",
 
39
      "linstaller.modules.language.inst",
 
40
      
26
41
      "linstaller.modules.network",
 
42
      "linstaller.modules.network.inst",
 
43
      
27
44
      "linstaller.modules.partdisks",
 
45
      "linstaller.modules.partdisks.front",
 
46
      "linstaller.modules.partdisks.inst",
 
47
      
28
48
      "linstaller.modules.semplice",
 
49
      "linstaller.modules.semplice.inst",
 
50
      
29
51
      "linstaller.modules.summary",
 
52
      "linstaller.modules.summary.front",
 
53
      
30
54
      "linstaller.modules.timezone",
 
55
      "linstaller.modules.timezone.front",
 
56
      "linstaller.modules.timezone.inst",
 
57
      
31
58
      "linstaller.modules.unsquash",
 
59
      "linstaller.modules.unsquash.inst",
 
60
      
32
61
      "linstaller.modules.update",
 
62
      "linstaller.modules.update.front",
33
63
      
34
64
      "linstaller.modules.userhost",
35
65
      "linstaller.modules.userhost.inst",