Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / setup.py @ 01e9dcaf

History | View | Annotate | Download (7.6 kB)

1
# Copyright 2011, 2012, 2013 GRNET S.A. All rights reserved.
2
#
3
# Redistribution and use in source and binary forms, with or
4
# without modification, are permitted provided that the following
5
# conditions are met:
6
#
7
#   1. Redistributions of source code must retain the above
8
#      copyright notice, this list of conditions and the following
9
#      disclaimer.
10
#
11
#   2. Redistributions in binary form must reproduce the above
12
#      copyright notice, this list of conditions and the following
13
#      disclaimer in the documentation and/or other materials
14
#      provided with the distribution.
15
#
16
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
# POSSIBILITY OF SUCH DAMAGE.
28
#
29
# The views and conclusions contained in the software and
30
# documentation are those of the authors and should not be
31
# interpreted as representing official policies, either expressed
32
# or implied, of GRNET S.A.
33
#
34

    
35
import distribute_setup
36
distribute_setup.use_setuptools()
37

    
38
import os
39
import sys
40

    
41
from distutils.util import convert_path
42
from fnmatch import fnmatchcase
43
from setuptools import setup, find_packages
44

    
45
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
46

    
47
from synnefo.versions.app import __version__
48

    
49
# Package info
50
VERSION = __version__
51
SHORT_DESCRIPTION = 'Synnefo Compute, Network and Image component'
52

    
53
PACKAGES_ROOT = '.'
54
PACKAGES = find_packages(PACKAGES_ROOT)
55

    
56
# Package meta
57
CLASSIFIERS = []
58

    
59
# Package requirements
60
INSTALL_REQUIRES = [
61
    'Django>=1.4, <1.5',
62
    'simplejson>=2.1.1',
63
    'pycurl>=7.19.0',
64
    'python-dateutil>=1.4.1',
65
    'IPy>=0.70',
66
    'South>=0.7.3',
67
    'pycrypto>=2.1.0',
68
    'puka',
69
    'python-daemon>=1.5.5, <1.6',
70
    'snf-common',
71
    'vncauthproxy>1.4',
72
    'snf-pithos-backend',
73
    'lockfile>=0.8, <0.9',
74
    'ipaddr',
75
    'setproctitle>=1.0.1',
76
    'bitarray>=0.8',
77
    'objpool>=0.3',
78
    'astakosclient',
79
    'snf-django-lib',
80
    'snf-branding',
81
    'snf-webproject',
82
    'requests',
83
    'paramiko'
84
]
85

    
86
EXTRAS_REQUIRES = {
87
        'DISPATCHER': ['puka', 'python-daemon==1.5.5', 'lockfile==0.8',
88
                       'setproctitle>=1.0.1'],
89
        'SSH_KEYS': ['pycrypto==2.1.0'],
90
}
91

    
92
TESTS_REQUIRES = [
93
    'factory_boy==2.1.0'
94
]
95

    
96

    
97
# Provided as an attribute, so you can append to these instead
98
# of replicating them:
99
standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"]
100
standard_exclude_directories = [
101
    ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", "snf-0.7"
102
]
103

    
104
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
105
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
106
# Note: you may want to copy this into your setup.py file verbatim, as
107
# you can't import this from another package, when you don't know if
108
# that package is installed yet.
109
def find_package_data(
110
    where=".",
111
    package="",
112
    exclude=standard_exclude,
113
    exclude_directories=standard_exclude_directories,
114
    only_in_packages=True,
115
    show_ignored=False):
116
    """
117
    Return a dictionary suitable for use in ``package_data``
118
    in a distutils ``setup.py`` file.
119

120
    The dictionary looks like::
121

122
        {"package": [files]}
123

124
    Where ``files`` is a list of all the files in that package that
125
    don"t match anything in ``exclude``.
126

127
    If ``only_in_packages`` is true, then top-level directories that
128
    are not packages won"t be included (but directories under packages
129
    will).
130

131
    Directories matching any pattern in ``exclude_directories`` will
132
    be ignored; by default directories with leading ``.``, ``CVS``,
133
    and ``_darcs`` will be ignored.
134

135
    If ``show_ignored`` is true, then all the files that aren"t
136
    included in package data are shown on stderr (for debugging
137
    purposes).
138

139
    Note patterns use wildcards, or can be exact paths (including
140
    leading ``./``), and all searching is case-insensitive.
141
    """
142
    out = {}
143
    stack = [(convert_path(where), "", package, only_in_packages)]
144
    while stack:
145
        where, prefix, package, only_in_packages = stack.pop(0)
146
        for name in os.listdir(where):
147
            fn = os.path.join(where, name)
148
            if os.path.isdir(fn):
149
                bad_name = False
150
                for pattern in exclude_directories:
151
                    if (fnmatchcase(name, pattern)
152
                        or fn.lower() == pattern.lower()):
153
                        bad_name = True
154
                        if show_ignored:
155
                            print >> sys.stderr, (
156
                                "Directory %s ignored by pattern %s"
157
                                % (fn, pattern))
158
                        break
159
                if bad_name:
160
                    continue
161
                if (os.path.isfile(os.path.join(fn, "__init__.py"))
162
                    and not prefix):
163
                    if not package:
164
                        new_package = name
165
                    else:
166
                        new_package = package + "." + name
167
                    stack.append((fn, "", new_package, False))
168
                else:
169
                    stack.append((fn, prefix + name + "/", package, only_in_packages))
170
            elif package or not only_in_packages:
171
                # is a file
172
                bad_name = False
173
                for pattern in exclude:
174
                    if (fnmatchcase(name, pattern)
175
                        or fn.lower() == pattern.lower()):
176
                        bad_name = True
177
                        if show_ignored:
178
                            print >> sys.stderr, (
179
                                "File %s ignored by pattern %s"
180
                                % (fn, pattern))
181
                        break
182
                if bad_name:
183
                    continue
184
                out.setdefault(package, []).append(prefix+name)
185
    return out
186

    
187
setup(
188
    name = 'snf-cyclades-app',
189
    version = VERSION,
190
    license = 'BSD',
191
    url = 'http://www.synnefo.org/',
192
    description = SHORT_DESCRIPTION,
193
    classifiers = CLASSIFIERS,
194

    
195
    author='Synnefo development team',
196
    author_email='synnefo-devel@googlegroups.com',
197
    maintainer='Synnefo development team',
198
    maintainer_email='synnefo-devel@googlegroups.com',
199

    
200
    namespace_packages = ['synnefo', 'synnefo.versions'],
201
    packages = PACKAGES,
202
    package_dir= {'': PACKAGES_ROOT},
203
    include_package_data = True,
204
    package_data = find_package_data('.'),
205
    zip_safe = False,
206

    
207
    install_requires = INSTALL_REQUIRES,
208
    extras_require = EXTRAS_REQUIRES,
209
    tests_require = TESTS_REQUIRES,
210

    
211
    dependency_links = ['http://www.synnefo.org/packages/pypi'],
212

    
213
    entry_points = {
214
     'console_scripts': [
215
         'snf-dispatcher = synnefo.logic.dispatcher:main',
216
         ],
217
     'synnefo': [
218
         'default_settings = synnefo.app_settings.default',
219
         'web_apps = synnefo.app_settings:synnefo_web_apps',
220
         'web_middleware = synnefo.app_settings:synnefo_web_middleware',
221
         'web_context_processors = synnefo.app_settings:synnefo_web_context_processors',
222
         'urls = synnefo.app_settings.urls:urlpatterns',
223
         'web_static = synnefo.app_settings:synnefo_static_files',
224
         ]
225
      },
226
)