Statistics
| Branch: | Tag: | Revision:

root / setup.py @ c71f38be

History | View | Annotate | Download (2.3 kB)

1 d57775d4 Nikos Skalkotos
#!/usr/bin/env python
2 121f3bc0 Nikos Skalkotos
# -*- coding: utf-8 -*-
3 121f3bc0 Nikos Skalkotos
#
4 ae48a082 Nikos Skalkotos
# Copyright 2012 GRNET S.A. All rights reserved.
5 d57775d4 Nikos Skalkotos
#
6 d57775d4 Nikos Skalkotos
# Redistribution and use in source and binary forms, with or
7 d57775d4 Nikos Skalkotos
# without modification, are permitted provided that the following
8 d57775d4 Nikos Skalkotos
# conditions are met:
9 d57775d4 Nikos Skalkotos
#
10 d57775d4 Nikos Skalkotos
#   1. Redistributions of source code must retain the above
11 d57775d4 Nikos Skalkotos
#      copyright notice, this list of conditions and the following
12 d57775d4 Nikos Skalkotos
#      disclaimer.
13 d57775d4 Nikos Skalkotos
#
14 d57775d4 Nikos Skalkotos
#   2. Redistributions in binary form must reproduce the above
15 d57775d4 Nikos Skalkotos
#      copyright notice, this list of conditions and the following
16 d57775d4 Nikos Skalkotos
#      disclaimer in the documentation and/or other materials
17 d57775d4 Nikos Skalkotos
#      provided with the distribution.
18 d57775d4 Nikos Skalkotos
#
19 d57775d4 Nikos Skalkotos
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
20 d57775d4 Nikos Skalkotos
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 d57775d4 Nikos Skalkotos
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 d57775d4 Nikos Skalkotos
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
23 d57775d4 Nikos Skalkotos
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24 d57775d4 Nikos Skalkotos
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25 d57775d4 Nikos Skalkotos
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
26 d57775d4 Nikos Skalkotos
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
27 d57775d4 Nikos Skalkotos
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 d57775d4 Nikos Skalkotos
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
29 d57775d4 Nikos Skalkotos
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 d57775d4 Nikos Skalkotos
# POSSIBILITY OF SUCH DAMAGE.
31 d57775d4 Nikos Skalkotos
#
32 d57775d4 Nikos Skalkotos
# The views and conclusions contained in the software and
33 d57775d4 Nikos Skalkotos
# documentation are those of the authors and should not be
34 d57775d4 Nikos Skalkotos
# interpreted as representing official policies, either expressed
35 d57775d4 Nikos Skalkotos
# or implied, of GRNET S.A.
36 d57775d4 Nikos Skalkotos
37 d57775d4 Nikos Skalkotos
import image_creator
38 d57775d4 Nikos Skalkotos
39 3251a62c Nikos Skalkotos
from setuptools import setup, find_packages
40 d57775d4 Nikos Skalkotos
41 d57775d4 Nikos Skalkotos
setup(
42 d57775d4 Nikos Skalkotos
    name='snf_image_creator',
43 d57775d4 Nikos Skalkotos
    version=image_creator.__version__,
44 d57775d4 Nikos Skalkotos
    description='Command line tool for creating images',
45 1deb6a25 Nikos Skalkotos
    long_description=open('README').read(),
46 d57775d4 Nikos Skalkotos
    url='https://code.grnet.gr/projects/snf-image-creator',
47 61346179 Nikos Skalkotos
    author="Synnefo development team",
48 61346179 Nikos Skalkotos
    author_email="synnefo-devel@googlegroups.com",
49 d57775d4 Nikos Skalkotos
    license='BSD',
50 023e1217 Nikos Skalkotos
    packages=find_packages(),
51 d57775d4 Nikos Skalkotos
    include_package_data=True,
52 717b0434 Nikos Skalkotos
    install_requires=['sh', 'ansicolors', 'progress>=1.0.2'],
53 d57775d4 Nikos Skalkotos
    entry_points={
54 672cabb9 Nikos Skalkotos
        'console_scripts': [
55 672cabb9 Nikos Skalkotos
                'snf-image-creator = image_creator.main:main',
56 38014222 Nikos Skalkotos
                'snf-mkimage = image_creator.dialog_main:main']
57 d57775d4 Nikos Skalkotos
    }
58 d57775d4 Nikos Skalkotos
)
59 672cabb9 Nikos Skalkotos
# vim: set sta sts=4 shiftwidth=4 sw=4 et ai :