Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-tools / setup.py @ d50ed8d4

History | View | Annotate | Download (7 kB)

1
#!/usr/bin/env python
2

    
3
# Copyright 2011-2012 GRNET S.A. All rights reserved.
4
#
5
# Redistribution and use in source and binary forms, with or
6
# without modification, are permitted provided that the following
7
# conditions are met:
8
#
9
#   1. Redistributions of source code must retain the above
10
#      copyright notice, this list of conditions and the following
11
#      disclaimer.
12
#
13
#   2. Redistributions in binary form must reproduce the above
14
#      copyright notice, this list of conditions and the following
15
#      disclaimer in the documentation and/or other materials
16
#      provided with the distribution.
17
#
18
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
# POSSIBILITY OF SUCH DAMAGE.
30
#
31
# The views and conclusions contained in the software and
32
# documentation are those of the authors and should not be
33
# interpreted as representing official policies, either expressed
34
# or implied, of GRNET S.A.
35
#
36

    
37
import distribute_setup
38
distribute_setup.use_setuptools()
39

    
40
import os
41

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

    
46
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
47
try:
48
    # try to update the version file
49
    from synnefo.util import version
50
    version.update_version('pithos.tools', 'version', HERE)
51
except ImportError:
52
    pass
53

    
54
from pithos.tools.version import __version__
55

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

    
62
PACKAGES_ROOT = '.'
63
PACKAGES = find_packages(PACKAGES_ROOT)
64

    
65
# Package meta
66
CLASSIFIERS = []
67

    
68
# Package requirements
69
INSTALL_REQUIRES = [
70
    'snf-common>0.9.13',
71
    'progress>=1.0'
72
]
73

    
74
EXTRAS_REQUIRES = {
75
}
76

    
77
TESTS_REQUIRES = [
78
]
79

    
80

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

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

    
94

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

106
    The dictionary looks like::
107

108
        {"package": [files]}
109

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

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

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

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

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

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

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

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

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

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

    
202
    entry_points={
203
        'console_scripts': [
204
            'pithos-sh = pithos.tools.sh:main',
205
            'pithos-sync = pithos.tools.sync:main',
206
            'pithos-test = pithos.tools.test:main',
207
            'pithos-fs = pithos.tools.fs:main',
208
            'pithos-dispatcher = pithos.tools.dispatcher:main',
209
        ],
210
    },
211
)