Statistics
| Branch: | Tag: | Revision:

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

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
    'objpool>=0.2',
65
    'snf-django-lib',
66
]
67

    
68
EXTRAS_REQUIRES = {
69
}
70

    
71
TESTS_REQUIRES = [
72
]
73

    
74

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

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

    
88

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

100
    The dictionary looks like::
101

102
        {"package": [files]}
103

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

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

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

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

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

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

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

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

    
189
    dependency_links=['http://www.synnefo.org/packages/pypi'],
190

    
191
    install_requires=INSTALL_REQUIRES,
192
    extras_require=EXTRAS_REQUIRES,
193
    tests_require=TESTS_REQUIRES,
194

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