Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / setup.py @ ee45eb81

History | View | Annotate | Download (7.4 kB)

1
#!/usr/bin/env python
2

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

    
38
import os
39
import sys
40

    
41
from fnmatch import fnmatchcase
42
from distutils.util import convert_path
43

    
44
from setuptools import setup, find_packages
45
from astakos import get_version
46

    
47
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
48
try:
49
    # try to update the version file
50
    from synnefo.util import version
51
    version.update_version('astakos', 'version', HERE)
52
except ImportError:
53
    pass
54

    
55
from astakos.version import __version__
56

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

    
63
PACKAGES_ROOT = '.'
64
PACKAGES = find_packages(PACKAGES_ROOT)
65

    
66
# Package meta
67
CLASSIFIERS = [
68
    'Development Status :: 3 - Alpha',
69
    'Operating System :: OS Independent',
70
    'Programming Language :: Python',
71
    'Topic :: Utilities',
72
    'License :: OSI Approved :: BSD License',
73
]
74

    
75
# Package requirements
76
INSTALL_REQUIRES = [
77
    'Django>=1.2, <1.3',
78
    'South>=0.7, <=0.7.3',
79
    'httplib2>=0.6.0',
80
    'snf-common>=0.9.0',
81
    'recaptcha-client>=1.0.5',
82
    'django-ratelimit==0.1',
83
    'celery',
84
    'requests',
85
    'inflect'
86
]
87

    
88
EXTRAS_REQUIRES = {
89
}
90

    
91
TESTS_REQUIRES = [
92
]
93

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

    
101
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
102
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
103
# Note: you may want to copy this into your setup.py file verbatim, as
104
# you can't import this from another package, when you don't know if
105
# that package is installed yet.
106

    
107

    
108
def find_package_data(
109
    where=".",
110
    package="",
111
    exclude=standard_exclude,
112
    exclude_directories=standard_exclude_directories,
113
    only_in_packages=True,
114
        show_ignored=False):
115
    """
116
    Return a dictionary suitable for use in ``package_data``
117
    in a distutils ``setup.py`` file.
118

119
    The dictionary looks like::
120

121
        {"package": [files]}
122

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

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

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

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

138
    Note patterns use wildcards, or can be exact paths (including
139
    leading ``./``), and all searching is case-insensitive.
140
    """
141
    out = {}
142
    stack = [(convert_path(where), "", package, only_in_packages)]
143
    while stack:
144
        where, prefix, package, only_in_packages = stack.pop(0)
145
        for name in os.listdir(where):
146
            fn = os.path.join(where, name)
147
            if os.path.isdir(fn):
148
                bad_name = False
149
                for pattern in exclude_directories:
150
                    if (fnmatchcase(name, pattern)
151
                            or fn.lower() == pattern.lower()):
152
                        bad_name = True
153
                        if show_ignored:
154
                            print >> sys.stderr, (
155
                                "Directory %s ignored by pattern %s"
156
                                % (fn, pattern))
157
                        break
158
                if bad_name:
159
                    continue
160
                if (os.path.isfile(os.path.join(fn, "__init__.py"))
161
                        and not prefix):
162
                    if not package:
163
                        new_package = name
164
                    else:
165
                        new_package = package + "." + name
166
                    stack.append((fn, "", new_package, False))
167
                else:
168
                    stack.append(
169
                        (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-astakos-app',
189
    version=VERSION,
190
    license='BSD',
191
    url='http://code.grnet.gr/projects/astakos',
192
    description=SHORT_DESCRIPTION,
193
    long_description=README + '\n\n' + CHANGES,
194
    classifiers=CLASSIFIERS,
195
    author='GRNET',
196
    author_email='astakos@grnet.gr',
197

    
198
    packages=find_packages(),
199
    include_package_data=True,
200
    package_data=find_package_data('.'),
201
    zip_safe=False,
202

    
203
    install_requires=INSTALL_REQUIRES,
204

    
205
    dependency_links=['http://docs.dev.grnet.gr/pypi'],
206

    
207
    entry_points={
208
        'synnefo': [
209
            'default_settings = astakos.im.synnefo_settings',
210
            'web_apps = astakos.im.synnefo_settings:installed_apps',
211
            'web_middleware = astakos.im.synnefo_settings:middlware_classes',
212
            'web_context_processors = astakos.im.synnefo_settings:context_processors',
213
            'urls = astakos.urls:urlpatterns',
214
            'web_static = astakos.im.synnefo_settings:static_files',
215
            'loggers = astakos.im.synnefo_settings:loggers'
216
        ]
217
    }
218
)