Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-app / setup.py @ c1b7f449

History | View | Annotate | Download (7 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
import sys
40

    
41
from distutils.util import convert_path
42
from fnmatch import fnmatchcase
43
from setuptools import setup, find_packages
44

    
45
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
46

    
47
from pithos.api.version import __version__
48

    
49
# Package info
50
VERSION = __version__
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
    'objpool>=0.3',
65
    'astakosclient',
66
    'snf-django-lib',
67
    'snf-webproject',
68
    'snf-branding',
69
]
70

    
71
EXTRAS_REQUIRES = {
72
}
73

    
74
TESTS_REQUIRES = [
75
]
76

    
77

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

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

    
91

    
92
def find_package_data(
93
    where=".",
94
    package="",
95
    exclude=standard_exclude,
96
    exclude_directories=standard_exclude_directories,
97
    only_in_packages=True,
98
        show_ignored=False):
99
    """
100
    Return a dictionary suitable for use in ``package_data``
101
    in a distutils ``setup.py`` file.
102

103
    The dictionary looks like::
104

105
        {"package": [files]}
106

107
    Where ``files`` is a list of all the files in that package that
108
    don"t match anything in ``exclude``.
109

110
    If ``only_in_packages`` is true, then top-level directories that
111
    are not packages won"t be included (but directories under packages
112
    will).
113

114
    Directories matching any pattern in ``exclude_directories`` will
115
    be ignored; by default directories with leading ``.``, ``CVS``,
116
    and ``_darcs`` will be ignored.
117

118
    If ``show_ignored`` is true, then all the files that aren"t
119
    included in package data are shown on stderr (for debugging
120
    purposes).
121

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

    
171
setup(
172
    name='snf-pithos-app',
173
    version=VERSION,
174
    license='BSD',
175
    url='http://www.synnefo.org/',
176
    description=SHORT_DESCRIPTION,
177
    classifiers=CLASSIFIERS,
178

    
179
    author='Synnefo development team',
180
    author_email='synnefo-devel@googlegroups.com',
181
    maintainer='Synnefo development team',
182
    maintainer_email='synnefo-devel@googlegroups.com',
183

    
184
    namespace_packages=['pithos'],
185
    packages=PACKAGES,
186
    package_dir={'': PACKAGES_ROOT},
187
    include_package_data=True,
188
    package_data=find_package_data('.'),
189
    zip_safe=False,
190

    
191
    dependency_links=['http://www.synnefo.org/packages/pypi'],
192

    
193
    install_requires=INSTALL_REQUIRES,
194
    extras_require=EXTRAS_REQUIRES,
195
    tests_require=TESTS_REQUIRES,
196

    
197
    entry_points={
198
        'console_scripts': [
199
            'pithos-manage-accounts = pithos.api.manage_accounts.cli:main'
200
        ],
201
        'synnefo': [
202
            'default_settings = pithos.api.synnefo_settings',
203
            'web_apps = pithos.api.synnefo_settings:synnefo_installed_apps',
204
            'web_middleware = pithos.api.synnefo_settings:synnefo_middlewares',
205
            'urls = pithos.api.urls:urlpatterns'
206
        ]
207
    },
208
)