Statistics
| Branch: | Tag: | Revision:

root / snf-django-lib / setup.py @ ed8c7696

History | View | Annotate | Download (6.3 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
import sys
40

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

    
45
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
46

    
47
from snf_django.version import __version__
48

    
49
# Package info
50
VERSION = __version__
51
SHORT_DESCRIPTION = 'Common Synnefo library for Django'
52

    
53
PACKAGES_ROOT = '.'
54
PACKAGES = find_packages(PACKAGES_ROOT)
55

    
56
# Package meta
57
CLASSIFIERS = []
58

    
59
# Package requirements
60
INSTALL_REQUIRES = [
61
    'Django >=1.2, <1.3',
62
    'simplejson>=2.1.1',
63
    'astakosclient',
64
    'snf-common',
65
]
66

    
67

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

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

91
    The dictionary looks like::
92

93
        {"package": [files]}
94

95
    Where ``files`` is a list of all the files in that package that
96
    don"t match anything in ``exclude``.
97

98
    If ``only_in_packages`` is true, then top-level directories that
99
    are not packages won"t be included (but directories under packages
100
    will).
101

102
    Directories matching any pattern in ``exclude_directories`` will
103
    be ignored; by default directories with leading ``.``, ``CVS``,
104
    and ``_darcs`` will be ignored.
105

106
    If ``show_ignored`` is true, then all the files that aren"t
107
    included in package data are shown on stderr (for debugging
108
    purposes).
109

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

    
158
setup(
159
    name='snf-django-lib',
160
    version=VERSION,
161
    license='BSD',
162
    url='http://www.synnefo.org/',
163
    description=SHORT_DESCRIPTION,
164
    classifiers=CLASSIFIERS,
165

    
166
    author='Synnefo development team',
167
    author_email='synnefo-devel@googlegroups.com',
168
    maintainer='Synnefo development team',
169
    maintainer_email='synnefo-devel@googlegroups.com',
170

    
171
    packages=PACKAGES,
172
    package_dir={'': PACKAGES_ROOT},
173
    include_package_data=True,
174
    package_data=find_package_data('.'),
175
    zip_safe=False,
176

    
177
    install_requires=INSTALL_REQUIRES,
178
    dependency_links=['http://www.synnefo.org/packages/pypi'],
179
    entry_points={},
180
)