Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-backend / setup.py @ 61a1b2d2

History | View | Annotate | Download (6.8 kB)

1
# Copyright 2011 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
try:
46
    # try to update the version file
47
    from synnefo.util import version
48
    version.update_version('pithos.backends', 'version', HERE)
49
except ImportError:
50
    pass
51

    
52
from pithos.backends.version import __version__
53

    
54
# Package info
55
VERSION = __version__
56
README = open(os.path.join(HERE, 'README')).read()
57
CHANGES = open(os.path.join(HERE, 'Changelog')).read()
58
SHORT_DESCRIPTION = 'Package short description'
59

    
60
PACKAGES_ROOT = '.'
61
PACKAGES = find_packages(PACKAGES_ROOT)
62

    
63
# Package meta
64
CLASSIFIERS = []
65

    
66
# Package requirements
67
INSTALL_REQUIRES = [
68
    'snf-common>0.9.13',
69
    'SQLAlchemy==0.6.3',
70
    'alembic>=0.3.4, <0.4',
71
]
72

    
73
EXTRAS_REQUIRES = {
74
}
75

    
76
TESTS_REQUIRES = [
77
]
78

    
79

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

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

    
93

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

105
    The dictionary looks like::
106

107
        {"package": [files]}
108

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

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

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

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

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

    
173
setup(
174
    name='snf-pithos-backend',
175
    version=VERSION,
176
    license='BSD',
177
    url='http://code.grnet.gr/',
178
    description=SHORT_DESCRIPTION,
179
    long_description=README + '\n\n' + CHANGES,
180
    classifiers=CLASSIFIERS,
181

    
182
    author='Package author',
183
    author_email='author@grnet.gr',
184
    maintainer='Package maintainer',
185
    maintainer_email='maintainer@grnet.gr',
186

    
187
    namespace_packages=['pithos'],
188
    packages=PACKAGES,
189
    package_dir={'': PACKAGES_ROOT},
190
    package_data=find_package_data("."),
191
    include_package_data=True,
192
    zip_safe=False,
193

    
194
    dependency_links=[
195
        'http://docs.dev.grnet.gr/pypi/'],
196

    
197
    install_requires=INSTALL_REQUIRES,
198
    extras_require=EXTRAS_REQUIRES,
199
    tests_require=TESTS_REQUIRES,
200

    
201
    entry_points={
202
        'console_scripts': [
203
            'pithos-migrate = pithos.backends.migrate:main'
204
        ],
205
    },
206
)