Statistics
| Branch: | Tag: | Revision:

root / snf-branding / setup.py @ 435bb7fb

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
SHORT_DESCRIPTION = 'Synnefo stats grapher'
51

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

    
55
# Package meta
56
CLASSIFIERS = []
57

    
58
# Package requirements
59
INSTALL_REQUIRES = [
60
]
61

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

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

85
    The dictionary looks like::
86

87
        {"package": [files]}
88

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

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

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

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

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

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

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

    
170
    install_requires=INSTALL_REQUIRES,
171

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