Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (6.7 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.tools', 'version', HERE)
47
from pithos.api.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
    'Django>=1.2.3',
64
    'SQLAlchemy>=0.6.3',
65
    'MySQL-python>=1.2.2',
66
    'psycopg2>=2.2.1'
67
]
68

    
69
EXTRAS_REQUIRES = {
70
}
71

    
72
TESTS_REQUIRES = [
73
]
74

    
75

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

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

99
    The dictionary looks like::
100

101
        {"package": [files]}
102

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

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

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

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

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

    
166
setup(
167
    name = 'snf-pithos-tools',
168
    version = VERSION,
169
    license = 'BSD',
170
    url = 'http://code.grnet.gr/',
171
    description = SHORT_DESCRIPTION,
172
    long_description=README + '\n\n' +  CHANGES,
173
    classifiers = CLASSIFIERS,
174

    
175
    author = 'Package author',
176
    author_email = 'author@grnet.gr',
177
    maintainer = 'Package maintainer',
178
    maintainer_email = 'maintainer@grnet.gr',
179

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

    
187
    dependency_links = [
188
        'http://docs.dev.grnet.gr/pypi/index.html'],
189

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

    
194
    entry_points = {
195
     'console_scripts': [
196
         ],
197
      },
198
)
199