Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / setup.py @ 07a74632

History | View | Annotate | Download (7.9 kB)

1
# Copyright 2011 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

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

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

    
46
try:
47
    # try to update the version file
48
    from synnefo.util.version import update_version
49
    update_version('synnefo.versions', 'app', HERE)
50
except ImportError:
51
    pass
52

    
53
from synnefo.versions.app import __version__
54

    
55
# Package info
56
VERSION = __version__
57
README = open(os.path.join(HERE, 'README')).read()
58
CHANGES = open(os.path.join(HERE, 'Changelog')).read()
59
SHORT_DESCRIPTION = 'Package short description'
60

    
61
PACKAGES_ROOT = '.'
62
PACKAGES = find_packages(PACKAGES_ROOT)
63

    
64
# Package meta
65
CLASSIFIERS = []
66

    
67
# Package requirements
68
INSTALL_REQUIRES = [
69
    'Django >=1.2, <1.3',
70
    'simplejson>=2.1.1',
71
    'pycurl>=7.19.0',
72
    'python-dateutil>=1.4.1',
73
    'IPy>=0.70',
74
    'South>=0.7',
75
    'pycrypto>=2.1.0',
76
    'amqplib>=0.6.1',
77
    'python-daemon>=1.5.5',
78
    'snf-common>=0.9.0',
79
    'vncauthproxy>=1.2',
80
    'south>=0.7, <=0.7.3',
81
    'snf-pithos-backend>=0.9.1',
82
    'lockfile>=0.8, <0.9'
83
]
84

    
85
EXTRAS_REQUIRES = {
86
        'DISPATCHER': ['amqplib==0.6.1', 'python-daemon==1.5.5', 'lockfile==0.8'],
87
        'SSH_KEYS': ['pycrypto==2.1.0'],
88
        'BURNIN': ['unittest2==0.5.1', 'paramiko==1.7.6', 'python-prctl==1.3.0']
89
}
90

    
91
TESTS_REQUIRES = [
92
]
93

    
94

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

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

118
    The dictionary looks like::
119

120
        {"package": [files]}
121

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

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

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

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

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

    
185
setup(
186
    name = 'snf-cyclades-app',
187
    version = VERSION,
188
    license = 'BSD',
189
    url = 'http://code.grnet.gr/',
190
    description = SHORT_DESCRIPTION,
191
    long_description=README + '\n\n' +  CHANGES,
192
    classifiers = CLASSIFIERS,
193

    
194
    author = 'Package author',
195
    author_email = 'author@grnet.gr',
196
    maintainer = 'Package maintainer',
197
    maintainer_email = 'maintainer@grnet.gr',
198

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

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

    
210
    dependency_links = ['http://docs.dev.grnet.gr/pypi'],
211

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