~ubuntu-branches/ubuntu/raring/cloud-utils/raring-201302042112

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Scott Moser
  • Date: 2012-07-12 13:38:44 UTC
  • Revision ID: package-import@ubuntu.com-20120712133844-m1pfam3g20h74oyq
Tags: 0.25-0ubuntu6
* Sync to upstream trunk at revision 188
  * adds cloudimg-sync and ubuntu-cloudimg-query2 [Ben Howard]
* debian/control: run wrap-and-sort 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
# vi: ts=4 expandtab
 
3
#
 
4
#    Distutils magic for ec2-init
 
5
#    Copyright (C) 2009 Canonical Ltd.
 
6
#
 
7
#    Author: Ben Howard <ben.howard@ubuntu.com>
 
8
#
 
9
#    This program is free software: you can redistribute it and/or modify
 
10
#    it under the terms of the GNU General Public License version 3, as
 
11
#    published by the Free Software Foundation.
 
12
#
 
13
#    This program is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
from distutils.core import setup
 
22
from glob import glob
 
23
import os.path
 
24
import subprocess
 
25
 
 
26
def is_f(p):
 
27
    return(os.path.isfile(p))
 
28
 
 
29
setup(name='sync-images',
 
30
      version='0.1',
 
31
      description='Tools utilizing query2 for local and cloud synchronization',
 
32
      author='Ben Howard',
 
33
      author_email='ben.howard@ubuntu.com',
 
34
      url='http://launchpad.net/cloud-utils/',
 
35
      packages=['syncimgs' ],
 
36
      )