Statistics
| Branch: | Tag: | Revision:

root / setup.py @ 41af0bcd

History | View | Annotate | Download (6.2 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
from cloudcms.version import __version__
43

    
44
# Package info
45
VERSION = __version__
46

    
47

    
48
INSTALL_REQUIRES = [
49
    'snf-common>0.9',
50
    'Django>=1.4, <1.5',
51
    'South>=0.7',
52
    'feincms>=1.6, <1.7',
53
    'django-pagination >=1.0.5',
54
    'django-mptt >= 0.5.2, <0.6',
55
    'lxml',
56
    'docutils',
57
    'PIL'
58
]
59

    
60
CLASSIFIERS = []
61

    
62

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

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

79
    The dictionary looks like::
80

81
        {'package': [files]}
82

83
    Where ``files`` is a list of all the files in that package that
84
    don't match anything in ``exclude``.
85

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

90
    Directories matching any pattern in ``exclude_directories`` will
91
    be ignored; by default directories with leading ``.``, ``CVS``,
92
    and ``_darcs`` will be ignored.
93

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

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

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

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

    
154
    author = 'Package author',
155
    author_email = 'author@grnet.gr',
156
    maintainer = 'Package maintainer',
157
    maintainer_email = 'maintainer@grnet.gr',
158

    
159
    packages = find_packages('.'),
160
    package_dir= {'': '.'},
161
    include_package_data = True,
162
    package_data=find_package_data('.'),
163
    zip_safe = False,
164

    
165
    install_requires = INSTALL_REQUIRES,
166

    
167
    dependency_links = ['http://docs.dev.grnet.gr/pypi'],
168

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

    
181
)
182