Statistics
| Branch: | Tag: | Revision:

root / snf-cyclades-app / setup.py @ 9d889386

History | View | Annotate | Download (7.6 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
from synnefo.versions.app import __version__
47

    
48
# Package info
49
VERSION = __version__
50
README = open(os.path.join(HERE, 'README')).read()
51
CHANGES = open(os.path.join(HERE, 'Changelog')).read()
52
SHORT_DESCRIPTION = 'Package short description'
53

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

    
57
# Package meta
58
CLASSIFIERS = []
59

    
60
# Package requirements
61
INSTALL_REQUIRES = [
62
    'Django >=1.2, <1.3',
63
    'simplejson>=2.1.1',
64
    'pycurl>=7.19.0',
65
    'python-dateutil>=1.4.1',
66
    'IPy>=0.70',
67
    'South>=0.7',
68
    'pycrypto>=2.1.0',
69
    'puka',
70
    'python-daemon>=1.5.5, <1.6',
71
    'snf-common',
72
    'vncauthproxy>=1.2',
73
    'south>=0.7, <=0.7.3',
74
    'snf-pithos-backend',
75
    'lockfile>=0.8, <0.9',
76
    'ipaddr',
77
    'setproctitle>=1.0.1',
78
    'bitarray>=0.8',
79
    'snf-branding'
80
]
81

    
82
EXTRAS_REQUIRES = {
83
        'DISPATCHER': ['puka', 'python-daemon==1.5.5', 'lockfile==0.8',
84
                       'setproctitle>=1.0.1'],
85
        'SSH_KEYS': ['pycrypto==2.1.0'],
86
}
87

    
88
TESTS_REQUIRES = [
89
    'factory_boy'
90
]
91

    
92

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

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

116
    The dictionary looks like::
117

118
        {"package": [files]}
119

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

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

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

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

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

    
183
setup(
184
    name = 'snf-cyclades-app',
185
    version = VERSION,
186
    license = 'BSD',
187
    url = 'http://www.synnefo.org/',
188
    description = SHORT_DESCRIPTION,
189
    long_description=README + '\n\n' +  CHANGES,
190
    classifiers = CLASSIFIERS,
191

    
192
    author='Synnefo development team',
193
    author_email='synnefo-devel@googlegroups.com',
194
    maintainer='Synnefo development team',
195
    maintainer_email='synnefo-devel@googlegroups.com',
196

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

    
204
    install_requires = INSTALL_REQUIRES,
205
    extras_require = EXTRAS_REQUIRES,
206
    tests_require = TESTS_REQUIRES,
207

    
208
    dependency_links = ['http://docs.dev.grnet.gr/pypi'],
209

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