Statistics
| Branch: | Tag: | Revision:

root / snf-django-lib / setup.py @ 1ecb12b5

History | View | Annotate | Download (6.4 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
README = open(os.path.join(HERE, 'README')).read()
52
CHANGES = open(os.path.join(HERE, 'Changelog')).read()
53
SHORT_DESCRIPTION = 'Common Synnefo library for Django'
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, <1.3',
64
    'simplejson>=2.1.1',
65
    'snf-common',
66
]
67

    
68

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

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

92
    The dictionary looks like::
93

94
        {"package": [files]}
95

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

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

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

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

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

    
159
setup(
160
    name='snf-django-lib',
161
    version=VERSION,
162
    license='BSD',
163
    url='http://www.synnefo.org/',
164
    description=SHORT_DESCRIPTION,
165
    long_description=README + '\n\n' + CHANGES,
166
    classifiers=CLASSIFIERS,
167

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

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

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