Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / setup.py @ 398a9604

History | View | Annotate | Download (7.3 kB)

1
#!/usr/bin/env python
2

    
3
# Copyright 2011, 2012, 2013 GRNET S.A. All rights reserved.
4
#
5
# Redistribution and use in source and binary forms, with or
6
# without modification, are permitted provided that the following
7
# conditions are met:
8
#
9
#   1. Redistributions of source code must retain the above
10
#      copyright notice, this list of conditions and the following
11
#      disclaimer.
12
#
13
#   2. Redistributions in binary form must reproduce the above
14
#      copyright notice, this list of conditions and the following
15
#      disclaimer in the documentation and/or other materials
16
#      provided with the distribution.
17
#
18
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
# POSSIBILITY OF SUCH DAMAGE.
30
#
31
# The views and conclusions contained in the software and
32
# documentation are those of the authors and should not be
33
# interpreted as representing official policies, either expressed
34
# or implied, of GRNET S.A.
35
import distribute_setup
36
distribute_setup.use_setuptools()
37

    
38
import os
39
import sys
40

    
41
from fnmatch import fnmatchcase
42
from distutils.util import convert_path
43

    
44
from setuptools import setup, find_packages
45

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

    
48
from astakos.version import __version__
49

    
50
# Package info
51
VERSION = __version__
52
README = open(os.path.join(HERE, 'README')).read()
53
SHORT_DESCRIPTION = 'Synnefo Identity Management component'
54

    
55
PACKAGES_ROOT = '.'
56
PACKAGES = find_packages(PACKAGES_ROOT)
57

    
58
# Package meta
59
CLASSIFIERS = [
60
    'Development Status :: 3 - Alpha',
61
    'Operating System :: OS Independent',
62
    'Programming Language :: Python',
63
    'Topic :: Utilities',
64
    'License :: OSI Approved :: BSD License',
65
]
66

    
67
# Package requirements
68
INSTALL_REQUIRES = [
69
    'Django>=1.2, <1.3',
70
    'South>=0.7, <=0.7.3',
71
    'httplib2>=0.6.0',
72
    'snf-common',
73
    'django-tables2',
74
    'recaptcha-client>=1.0.5',
75
    'django-ratelimit==0.1',
76
    'requests',
77
    'inflect',
78
    'snf-django-lib',
79
    'snf-branding',
80
]
81

    
82
EXTRAS_REQUIRES = {
83
}
84

    
85
TESTS_REQUIRES = [
86
]
87

    
88
# Provided as an attribute, so you can append to these instead
89
# of replicating them:
90
standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"]
91
standard_exclude_directories = [
92
    ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", "snf-0.7"
93
]
94

    
95
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
96
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
97
# Note: you may want to copy this into your setup.py file verbatim, as
98
# you can't import this from another package, when you don't know if
99
# that package is installed yet.
100

    
101

    
102
def find_package_data(
103
    where=".",
104
    package="",
105
    exclude=standard_exclude,
106
    exclude_directories=standard_exclude_directories,
107
    only_in_packages=True,
108
        show_ignored=False):
109
    """
110
    Return a dictionary suitable for use in ``package_data``
111
    in a distutils ``setup.py`` file.
112

113
    The dictionary looks like::
114

115
        {"package": [files]}
116

117
    Where ``files`` is a list of all the files in that package that
118
    don"t match anything in ``exclude``.
119

120
    If ``only_in_packages`` is true, then top-level directories that
121
    are not packages won"t be included (but directories under packages
122
    will).
123

124
    Directories matching any pattern in ``exclude_directories`` will
125
    be ignored; by default directories with leading ``.``, ``CVS``,
126
    and ``_darcs`` will be ignored.
127

128
    If ``show_ignored`` is true, then all the files that aren"t
129
    included in package data are shown on stderr (for debugging
130
    purposes).
131

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

    
181
setup(
182
    name='snf-astakos-app',
183
    version=VERSION,
184
    license='BSD',
185
    url='http://www.synnefo.org/',
186
    description=SHORT_DESCRIPTION,
187
    long_description=README,
188
    classifiers=CLASSIFIERS,
189

    
190
    author='Synnefo development team',
191
    author_email='synnefo-devel@googlegroups.com',
192
    maintainer='Synnefo development team',
193
    maintainer_email='synnefo-devel@googlegroups.com',
194

    
195
    packages=find_packages(),
196
    include_package_data=True,
197
    package_data=find_package_data('.'),
198
    zip_safe=False,
199

    
200
    install_requires=INSTALL_REQUIRES,
201

    
202
    dependency_links=['http://www.synnefo.org/packages/pypi'],
203

    
204
    entry_points={
205
        'synnefo': [
206
            'default_settings = astakos.synnefo_settings',
207
            'web_apps = astakos.synnefo_settings:installed_apps',
208
            'web_middleware = astakos.synnefo_settings:middlware_classes',
209
            'web_context_processors = astakos.synnefo_settings:context_processors',
210
            'urls = astakos.urls:urlpatterns',
211
            'web_static = astakos.synnefo_settings:static_files'
212
        ],
213
        'console_scripts': [
214
            'astakos-migrate-0.14 = astakos.scripts.upgrade.migrate_014:main'
215
        ],
216
    }
217
)