Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-app / setup.py @ 5ede2c79

History | View | Annotate | Download (6.9 kB)

1
# Copyright 2011, 2012, 2013 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 pithos.api.version import __version__
47

    
48
# Package info
49
VERSION = __version__
50
README = open(os.path.join(HERE, 'README')).read()
51
SHORT_DESCRIPTION = 'Synnefo File/Object Storage component'
52

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

    
56
# Package meta
57
CLASSIFIERS = []
58

    
59
# Package requirements
60
INSTALL_REQUIRES = [
61
    'snf-common',
62
    'snf-pithos-backend',
63
    'Django>=1.2, <1.3'
64
]
65

    
66
EXTRAS_REQUIRES = {
67
}
68

    
69
TESTS_REQUIRES = [
70
]
71

    
72

    
73
# Provided as an attribute, so you can append to these instead
74
# of replicating them:
75
standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"]
76
standard_exclude_directories = [
77
    ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", "snf-0.7"
78
]
79

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

    
86

    
87
def find_package_data(
88
    where=".",
89
    package="",
90
    exclude=standard_exclude,
91
    exclude_directories=standard_exclude_directories,
92
    only_in_packages=True,
93
        show_ignored=False):
94
    """
95
    Return a dictionary suitable for use in ``package_data``
96
    in a distutils ``setup.py`` file.
97

98
    The dictionary looks like::
99

100
        {"package": [files]}
101

102
    Where ``files`` is a list of all the files in that package that
103
    don"t match anything in ``exclude``.
104

105
    If ``only_in_packages`` is true, then top-level directories that
106
    are not packages won"t be included (but directories under packages
107
    will).
108

109
    Directories matching any pattern in ``exclude_directories`` will
110
    be ignored; by default directories with leading ``.``, ``CVS``,
111
    and ``_darcs`` will be ignored.
112

113
    If ``show_ignored`` is true, then all the files that aren"t
114
    included in package data are shown on stderr (for debugging
115
    purposes).
116

117
    Note patterns use wildcards, or can be exact paths (including
118
    leading ``./``), and all searching is case-insensitive.
119
    """
120
    out = {}
121
    stack = [(convert_path(where), "", package, only_in_packages)]
122
    while stack:
123
        where, prefix, package, only_in_packages = stack.pop(0)
124
        for name in os.listdir(where):
125
            fn = os.path.join(where, name)
126
            if os.path.isdir(fn):
127
                bad_name = False
128
                for pattern in exclude_directories:
129
                    if (fnmatchcase(name, pattern)
130
                            or fn.lower() == pattern.lower()):
131
                        bad_name = True
132
                        if show_ignored:
133
                            print >> sys.stderr, (
134
                                "Directory %s ignored by pattern %s"
135
                                % (fn, pattern))
136
                        break
137
                if bad_name:
138
                    continue
139
                if (os.path.isfile(os.path.join(fn, "__init__.py"))
140
                        and not prefix):
141
                    if not package:
142
                        new_package = name
143
                    else:
144
                        new_package = package + "." + name
145
                    stack.append((fn, "", new_package, False))
146
                else:
147
                    stack.append(
148
                        (fn, prefix + name + "/", package, only_in_packages))
149
            elif package or not only_in_packages:
150
                # is a file
151
                bad_name = False
152
                for pattern in exclude:
153
                    if (fnmatchcase(name, pattern)
154
                            or fn.lower() == pattern.lower()):
155
                        bad_name = True
156
                        if show_ignored:
157
                            print >> sys.stderr, (
158
                                "File %s ignored by pattern %s"
159
                                % (fn, pattern))
160
                        break
161
                if bad_name:
162
                    continue
163
                out.setdefault(package, []).append(prefix + name)
164
    return out
165

    
166
setup(
167
    name='snf-pithos-app',
168
    version=VERSION,
169
    license='BSD',
170
    url='http://www.synnefo.org/',
171
    description=SHORT_DESCRIPTION,
172
    long_description=README,
173
    classifiers=CLASSIFIERS,
174

    
175
    author='Synnefo development team',
176
    author_email='synnefo-devel@googlegroups.com',
177
    maintainer='Synnefo development team',
178
    maintainer_email='synnefo-devel@googlegroups.com',
179

    
180
    namespace_packages=['pithos'],
181
    packages=PACKAGES,
182
    package_dir={'': PACKAGES_ROOT},
183
    include_package_data=True,
184
    package_data=find_package_data('.'),
185
    zip_safe=False,
186

    
187
    dependency_links=['http://www.synnefo.org/packages/pypi'],
188

    
189
    install_requires=INSTALL_REQUIRES,
190
    extras_require=EXTRAS_REQUIRES,
191
    tests_require=TESTS_REQUIRES,
192

    
193
    entry_points={
194
        'console_scripts': [
195
        ],
196
        'synnefo': [
197
            'default_settings = pithos.api.synnefo_settings',
198
            'web_apps = pithos.api.synnefo_settings:synnefo_installed_apps',
199
            'web_middleware = pithos.api.synnefo_settings:synnefo_middlewares',
200
            'urls = pithos.api.urls:urlpatterns'
201
        ]
202
    },
203
)