Statistics
| Branch: | Tag: | Revision:

root / snf-branding / setup.py @ 4833a703

History | View | Annotate | Download (6.5 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 setuptools import setup, find_packages
41
from fnmatch import fnmatchcase
42
from distutils.util import convert_path
43

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

    
46
from synnefo_branding.version import __version__
47

    
48
# Package info
49
VERSION = __version__
50
README = open(os.path.join(HERE, 'README')).read()
51
SHORT_DESCRIPTION = 'Synnefo stats grapher'
52

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

    
56
# Package meta
57
CLASSIFIERS = []
58

    
59
# Package requirements
60
INSTALL_REQUIRES = [
61
]
62

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

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

86
    The dictionary looks like::
87

88
        {"package": [files]}
89

90
    Where ``files`` is a list of all the files in that package that
91
    don"t match anything in ``exclude``.
92

93
    If ``only_in_packages`` is true, then top-level directories that
94
    are not packages won"t be included (but directories under packages
95
    will).
96

97
    Directories matching any pattern in ``exclude_directories`` will
98
    be ignored; by default directories with leading ``.``, ``CVS``,
99
    and ``_darcs`` will be ignored.
100

101
    If ``show_ignored`` is true, then all the files that aren"t
102
    included in package data are shown on stderr (for debugging
103
    purposes).
104

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

    
161
    author='Synnefo development team',
162
    author_email='synnefo-devel@googlegroups.com',
163
    maintainer='Synnefo development team',
164
    maintainer_email='synnefo-devel@googlegroups.com',
165

    
166
    packages=PACKAGES,
167
    package_dir={'': PACKAGES_ROOT},
168
    package_data=find_package_data('.'),
169
    include_package_data=True,
170
    zip_safe=False,
171

    
172
    install_requires=INSTALL_REQUIRES,
173

    
174
    dependency_links=['http://docs.dev.grnet.gr/pypi'],
175
    entry_points={
176
        'synnefo': [ 
177
             'web_apps = synnefo_branding.synnefo_settings:installed_apps',  
178
             'web_context_processors = synnefo_branding.synnefo_settings:context_processors',
179
             'web_static = synnefo_branding.synnefo_settings:static_files',
180
        ]
181
    }
182
)