~ubuntu-branches/ubuntu/trusty/ec2-init/trusty

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Scott Moser
  • Date: 2010-01-11 12:03:45 UTC
  • mto: This revision was merged to the branch mainline in revision 38.
  • Revision ID: james.westby@ubuntu.com-20100111120345-lj2rg41yrrvenuox
Tags: upstream-0.5.0
ImportĀ upstreamĀ versionĀ 0.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import subprocess
24
24
 
25
25
setup(name='EC2-init',
26
 
      version='0.4.999',
 
26
      version='0.5.0',
27
27
      description='EC2 initialisation magic',
28
28
      author='Soren Hansen',
29
29
      author_email='soren@canonical.com',
30
30
      url='http://launchpad.net/ec2-init/',
31
31
      packages=['ec2init'],
32
 
      scripts=['ec2-fetch-credentials.py',
33
 
               'ec2-get-info.py',
34
 
               'ec2-run-user-data.py',
35
 
               'ec2-set-defaults.py',
36
 
               'ec2-set-hostname.py',
37
 
               'ec2-wait-for-meta-data-service.py'],
 
32
      scripts=['ec2-init.py',
 
33
               'ec2-is-compat-env',
 
34
               'cloud-init-run-module.py'
 
35
               ],
38
36
      data_files=[('/etc/ec2-init', ['ec2-config.cfg']),
39
37
                  ('/etc/ec2-init/templates', glob('templates/*')),
40
 
                  ('/etc/init.d', ['ec2-init']),
41
 
                  ('/usr/share/ec2-init', ['ec2-init-appliance-ebs-volume-mount.sh']),
 
38
                  ('/etc/init', glob('upstart/*.conf')),
 
39
                  ('/usr/share/ec2-init', []),
42
40
                  ],
43
41
      )