Statistics
| Branch: | Tag: | Revision:

root / snf-pithos-lib / setup.py @ 8c306eab

History | View | Annotate | Download (6.6 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
from synnefo.util import version
44

    
45
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
46
version.update_version('pithos.lib', 'version', HERE)
47
from pithos.lib.version import __version__
48

    
49
# Package info
50
VERSION = __version__
51
README = open(os.path.join(HERE, 'README')).read()
52
CHANGES = open(os.path.join(HERE, 'Changelog')).read()
53
SHORT_DESCRIPTION = 'Package short description'
54

    
55
PACKAGES_ROOT = '.'
56
PACKAGES = find_packages(PACKAGES_ROOT)
57

    
58
# Package meta
59
CLASSIFIERS = []
60

    
61
# Package requirements
62
INSTALL_REQUIRES = [
63
]
64

    
65
EXTRAS_REQUIRES = {
66
}
67

    
68
TESTS_REQUIRES = [
69
]
70

    
71

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

    
79
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
80
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
81
# Note: you may want to copy this into your setup.py file verbatim, as
82
# you can't import this from another package, when you don't know if
83
# that package is installed yet.
84
def find_package_data(
85
    where=".",
86
    package="",
87
    exclude=standard_exclude,
88
    exclude_directories=standard_exclude_directories,
89
    only_in_packages=True,
90
    show_ignored=False):
91
    """
92
    Return a dictionary suitable for use in ``package_data``
93
    in a distutils ``setup.py`` file.
94

95
    The dictionary looks like::
96

97
        {"package": [files]}
98

99
    Where ``files`` is a list of all the files in that package that
100
    don"t match anything in ``exclude``.
101

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

106
    Directories matching any pattern in ``exclude_directories`` will
107
    be ignored; by default directories with leading ``.``, ``CVS``,
108
    and ``_darcs`` will be ignored.
109

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

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

    
162
setup(
163
    name = 'snf-pithos-lib',
164
    version = VERSION,
165
    license = 'BSD',
166
    url = 'http://code.grnet.gr/',
167
    description = SHORT_DESCRIPTION,
168
    long_description=README + '\n\n' +  CHANGES,
169
    classifiers = CLASSIFIERS,
170

    
171
    author = 'Package author',
172
    author_email = 'author@grnet.gr',
173
    maintainer = 'Package maintainer',
174
    maintainer_email = 'maintainer@grnet.gr',
175

    
176
    namespace_packages = ['pithos'],
177
    packages = PACKAGES,
178
    package_dir= {'': PACKAGES_ROOT},
179
    include_package_data = True,
180
    package_data = find_package_data('.'),
181
    zip_safe = False,
182

    
183
    dependency_links = [
184
        'http://docs.dev.grnet.gr/pypi/index.html'],
185

    
186
    install_requires = INSTALL_REQUIRES,
187
    extras_require = EXTRAS_REQUIRES,
188
    tests_require = TESTS_REQUIRES,
189

    
190
    entry_points = {
191
     'console_scripts': [
192
         ],
193
      },
194
)
195