Statistics
| Branch: | Tag: | Revision:

root / setup.py @ e982b634

History | View | Annotate | Download (2.3 kB)

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