Statistics
| Branch: | Tag: | Revision:

root / setup.py @ 8dd49103

History | View | Annotate | Download (6.3 kB)

1
# Copyright 2012 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 os
36
import sys
37

    
38
from fnmatch import fnmatchcase
39
from distutils.util import convert_path
40
from setuptools import setup, find_packages
41

    
42
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
43
try:
44
    # try to update the version file
45
    from synnefo.util import version
46
    version.update_version('cloudcms', 'version', HERE)
47
except ImportError:
48
    pass
49

    
50
from cloudcms.version import __version__
51

    
52
# Package info
53
VERSION = __version__
54

    
55

    
56
INSTALL_REQUIRES = [
57
    'snf-common>=0.9.0',
58
    'Django >=1.2.3, <1.3',
59
    'South>=0.7',
60
    'feincms >=1.4.2, < 1.5',
61
    'django-pagination >=1.0.5'
62
]
63
CLASSIFIERS = []
64

    
65

    
66
# Provided as an attribute, so you can append to these instead
67
# of replicating them:
68
standard_exclude = ('*.py', '*.pyc', '*$py.class', '*~', '.*', '*.bak')
69
standard_exclude_directories = ('.*', 'CVS', '_darcs', './build',
70
                                './dist', 'EGG-INFO', '*.egg-info')
71

    
72
def find_package_data(
73
    where='.', package='',
74
    exclude=standard_exclude,
75
    exclude_directories=standard_exclude_directories,
76
    only_in_packages=True,
77
    show_ignored=False):
78
    """
79
    Return a dictionary suitable for use in ``package_data``
80
    in a distutils ``setup.py`` file.
81

82
    The dictionary looks like::
83

84
        {'package': [files]}
85

86
    Where ``files`` is a list of all the files in that package that
87
    don't match anything in ``exclude``.
88

89
    If ``only_in_packages`` is true, then top-level directories that
90
    are not packages won't be included (but directories under packages
91
    will).
92

93
    Directories matching any pattern in ``exclude_directories`` will
94
    be ignored; by default directories with leading ``.``, ``CVS``,
95
    and ``_darcs`` will be ignored.
96

97
    If ``show_ignored`` is true, then all the files that aren't
98
    included in package data are shown on stderr (for debugging
99
    purposes).
100

101
    Note patterns use wildcards, or can be exact paths (including
102
    leading ``./``), and all searching is case-insensitive.
103
    """
104

    
105
    out = {}
106
    stack = [(convert_path(where), '', package, only_in_packages)]
107
    while stack:
108
        where, prefix, package, only_in_packages = stack.pop(0)
109
        for name in os.listdir(where):
110
            fn = os.path.join(where, name)
111
            if os.path.isdir(fn):
112
                bad_name = False
113
                for pattern in exclude_directories:
114
                    if (fnmatchcase(name, pattern)
115
                        or fn.lower() == pattern.lower()):
116
                        bad_name = True
117
                        if show_ignored:
118
                            print >> sys.stderr, (
119
                                "Directory %s ignored by pattern %s"
120
                                % (fn, pattern))
121
                        break
122
                if bad_name:
123
                    continue
124
                if (os.path.isfile(os.path.join(fn, '__init__.py'))
125
                    and not prefix):
126
                    if not package:
127
                        new_package = name
128
                    else:
129
                        new_package = package + '.' + name
130
                    stack.append((fn, '', new_package, False))
131
                else:
132
                    stack.append((fn, prefix + name + '/', package, only_in_packages))
133
            elif package or not only_in_packages:
134
                # is a file
135
                bad_name = False
136
                for pattern in exclude:
137
                    if (fnmatchcase(name, pattern)
138
                        or fn.lower() == pattern.lower()):
139
                        bad_name = True
140
                        if show_ignored:
141
                            print >> sys.stderr, (
142
                                "File %s ignored by pattern %s"
143
                                % (fn, pattern))
144
                        break
145
                if bad_name:
146
                    continue
147
                out.setdefault(package, []).append(prefix+name)
148
    return out
149

    
150
setup(
151
    name = 'snf-cloudcms',
152
    version = VERSION,
153
    license = 'BSD',
154
    url = 'http://code.grnet.gr/',
155
    classifiers = CLASSIFIERS,
156

    
157
    author = 'Package author',
158
    author_email = 'author@grnet.gr',
159
    maintainer = 'Package maintainer',
160
    maintainer_email = 'maintainer@grnet.gr',
161

    
162
    packages = find_packages('.'),
163
    package_dir= {'': '.'},
164
    include_package_data = True,
165
    package_data=find_package_data('.'),
166
    zip_safe = False,
167

    
168
    install_requires = INSTALL_REQUIRES,
169

    
170
    dependency_links = ['http://docs.dev.grnet.gr/pypi'],
171

    
172
    entry_points = {
173
     'synnefo': [
174
         'default_settings = cloudcms.synnefo_settings',
175
         'web_apps = cloudcms.synnefo_settings:cloudcms_apps',
176
         'web_middleware = cloudcms.synnefo_settings:cloudcms_middlewares',
177
         'web_context_processors = cloudcms.synnefo_settings:cloudcms_context_processors',
178
         'urls = cloudcms.urls:urlpatterns',
179
         'web_static = cloudcms.synnefo_settings:cloudcms_staticfiles'
180
         ]
181
    },
182

    
183
)
184