Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / setup.py @ 671e4232

History | View | Annotate | Download (7.3 kB)

1 64cd4730 Antony Chazapis
#!/usr/bin/env python
2 64cd4730 Antony Chazapis
3 3eea2bc3 Constantinos Venetsanopoulos
# Copyright 2011, 2012, 2013 GRNET S.A. All rights reserved.
4 64cd4730 Antony Chazapis
#
5 64cd4730 Antony Chazapis
# Redistribution and use in source and binary forms, with or
6 64cd4730 Antony Chazapis
# without modification, are permitted provided that the following
7 64cd4730 Antony Chazapis
# conditions are met:
8 64cd4730 Antony Chazapis
#
9 64cd4730 Antony Chazapis
#   1. Redistributions of source code must retain the above
10 64cd4730 Antony Chazapis
#      copyright notice, this list of conditions and the following
11 64cd4730 Antony Chazapis
#      disclaimer.
12 64cd4730 Antony Chazapis
#
13 64cd4730 Antony Chazapis
#   2. Redistributions in binary form must reproduce the above
14 64cd4730 Antony Chazapis
#      copyright notice, this list of conditions and the following
15 64cd4730 Antony Chazapis
#      disclaimer in the documentation and/or other materials
16 64cd4730 Antony Chazapis
#      provided with the distribution.
17 64cd4730 Antony Chazapis
#
18 64cd4730 Antony Chazapis
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19 64cd4730 Antony Chazapis
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 64cd4730 Antony Chazapis
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21 64cd4730 Antony Chazapis
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22 64cd4730 Antony Chazapis
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 64cd4730 Antony Chazapis
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 64cd4730 Antony Chazapis
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25 64cd4730 Antony Chazapis
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26 64cd4730 Antony Chazapis
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 64cd4730 Antony Chazapis
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28 64cd4730 Antony Chazapis
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 64cd4730 Antony Chazapis
# POSSIBILITY OF SUCH DAMAGE.
30 64cd4730 Antony Chazapis
#
31 64cd4730 Antony Chazapis
# The views and conclusions contained in the software and
32 64cd4730 Antony Chazapis
# documentation are those of the authors and should not be
33 64cd4730 Antony Chazapis
# interpreted as representing official policies, either expressed
34 64cd4730 Antony Chazapis
# or implied, of GRNET S.A.
35 a11acc65 Kostas Papadimitriou
import distribute_setup
36 a11acc65 Kostas Papadimitriou
distribute_setup.use_setuptools()
37 64cd4730 Antony Chazapis
38 64cd4730 Antony Chazapis
import os
39 64cd4730 Antony Chazapis
import sys
40 64cd4730 Antony Chazapis
41 64cd4730 Antony Chazapis
from fnmatch import fnmatchcase
42 64cd4730 Antony Chazapis
from distutils.util import convert_path
43 64cd4730 Antony Chazapis
44 64cd4730 Antony Chazapis
from setuptools import setup, find_packages
45 64cd4730 Antony Chazapis
46 27993be5 Kostas Papadimitriou
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
47 27993be5 Kostas Papadimitriou
48 27993be5 Kostas Papadimitriou
from astakos.version import __version__
49 27993be5 Kostas Papadimitriou
50 27993be5 Kostas Papadimitriou
# Package info
51 27993be5 Kostas Papadimitriou
VERSION = __version__
52 3eea2bc3 Constantinos Venetsanopoulos
SHORT_DESCRIPTION = 'Synnefo Identity Management component'
53 27993be5 Kostas Papadimitriou
54 27993be5 Kostas Papadimitriou
PACKAGES_ROOT = '.'
55 27993be5 Kostas Papadimitriou
PACKAGES = find_packages(PACKAGES_ROOT)
56 27993be5 Kostas Papadimitriou
57 27993be5 Kostas Papadimitriou
# Package meta
58 27993be5 Kostas Papadimitriou
CLASSIFIERS = [
59 5ce3ce4f Sofia Papagiannaki
    'Development Status :: 3 - Alpha',
60 5ce3ce4f Sofia Papagiannaki
    'Operating System :: OS Independent',
61 5ce3ce4f Sofia Papagiannaki
    'Programming Language :: Python',
62 5ce3ce4f Sofia Papagiannaki
    'Topic :: Utilities',
63 5ce3ce4f Sofia Papagiannaki
    'License :: OSI Approved :: BSD License',
64 27993be5 Kostas Papadimitriou
]
65 64cd4730 Antony Chazapis
66 27993be5 Kostas Papadimitriou
# Package requirements
67 64cd4730 Antony Chazapis
INSTALL_REQUIRES = [
68 6b256427 Christos Stavrakakis
    'Django>=1.4, <1.5',
69 be674416 Christos Stavrakakis
    'South>=0.7.3',
70 ebd369d0 Sofia Papagiannaki
    'httplib2>=0.6.0',
71 600222f6 Christos Stavrakakis
    'snf-common',
72 d98f519a Kostas Papadimitriou
    'django-tables2',
73 672d445a Sofia Papagiannaki
    'recaptcha-client>=1.0.5',
74 fc1e2f02 Sofia Papagiannaki
    'django-ratelimit==0.1',
75 6e029beb Sofia Papagiannaki
    'requests',
76 4b355d71 Christos Stavrakakis
    'inflect',
77 4b355d71 Christos Stavrakakis
    'snf-django-lib',
78 4b01493d Georgios D. Tsoukalas
    'snf-branding',
79 52168d57 Kostas Papadimitriou
    'snf-webproject',
80 64cd4730 Antony Chazapis
]
81 64cd4730 Antony Chazapis
82 27993be5 Kostas Papadimitriou
EXTRAS_REQUIRES = {
83 27993be5 Kostas Papadimitriou
}
84 64cd4730 Antony Chazapis
85 27993be5 Kostas Papadimitriou
TESTS_REQUIRES = [
86 27993be5 Kostas Papadimitriou
]
87 27993be5 Kostas Papadimitriou
88 27993be5 Kostas Papadimitriou
# Provided as an attribute, so you can append to these instead
89 27993be5 Kostas Papadimitriou
# of replicating them:
90 27993be5 Kostas Papadimitriou
standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"]
91 27993be5 Kostas Papadimitriou
standard_exclude_directories = [
92 8fb8d0cf Giorgos Korfiatis
    ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info",
93 8fb8d0cf Giorgos Korfiatis
    "snf-0.7"
94 27993be5 Kostas Papadimitriou
]
95 64cd4730 Antony Chazapis
96 64cd4730 Antony Chazapis
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
97 64cd4730 Antony Chazapis
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
98 64cd4730 Antony Chazapis
# Note: you may want to copy this into your setup.py file verbatim, as
99 64cd4730 Antony Chazapis
# you can't import this from another package, when you don't know if
100 64cd4730 Antony Chazapis
# that package is installed yet.
101 5ce3ce4f Sofia Papagiannaki
102 5ce3ce4f Sofia Papagiannaki
103 64cd4730 Antony Chazapis
def find_package_data(
104 27993be5 Kostas Papadimitriou
    where=".",
105 27993be5 Kostas Papadimitriou
    package="",
106 64cd4730 Antony Chazapis
    exclude=standard_exclude,
107 64cd4730 Antony Chazapis
    exclude_directories=standard_exclude_directories,
108 64cd4730 Antony Chazapis
    only_in_packages=True,
109 5ce3ce4f Sofia Papagiannaki
        show_ignored=False):
110 64cd4730 Antony Chazapis
    """
111 64cd4730 Antony Chazapis
    Return a dictionary suitable for use in ``package_data``
112 64cd4730 Antony Chazapis
    in a distutils ``setup.py`` file.
113 64cd4730 Antony Chazapis

114 64cd4730 Antony Chazapis
    The dictionary looks like::
115 64cd4730 Antony Chazapis

116 27993be5 Kostas Papadimitriou
        {"package": [files]}
117 64cd4730 Antony Chazapis

118 64cd4730 Antony Chazapis
    Where ``files`` is a list of all the files in that package that
119 27993be5 Kostas Papadimitriou
    don"t match anything in ``exclude``.
120 64cd4730 Antony Chazapis

121 64cd4730 Antony Chazapis
    If ``only_in_packages`` is true, then top-level directories that
122 27993be5 Kostas Papadimitriou
    are not packages won"t be included (but directories under packages
123 64cd4730 Antony Chazapis
    will).
124 64cd4730 Antony Chazapis

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

129 27993be5 Kostas Papadimitriou
    If ``show_ignored`` is true, then all the files that aren"t
130 64cd4730 Antony Chazapis
    included in package data are shown on stderr (for debugging
131 64cd4730 Antony Chazapis
    purposes).
132 64cd4730 Antony Chazapis

133 64cd4730 Antony Chazapis
    Note patterns use wildcards, or can be exact paths (including
134 64cd4730 Antony Chazapis
    leading ``./``), and all searching is case-insensitive.
135 64cd4730 Antony Chazapis
    """
136 64cd4730 Antony Chazapis
    out = {}
137 27993be5 Kostas Papadimitriou
    stack = [(convert_path(where), "", package, only_in_packages)]
138 64cd4730 Antony Chazapis
    while stack:
139 64cd4730 Antony Chazapis
        where, prefix, package, only_in_packages = stack.pop(0)
140 64cd4730 Antony Chazapis
        for name in os.listdir(where):
141 64cd4730 Antony Chazapis
            fn = os.path.join(where, name)
142 64cd4730 Antony Chazapis
            if os.path.isdir(fn):
143 64cd4730 Antony Chazapis
                bad_name = False
144 64cd4730 Antony Chazapis
                for pattern in exclude_directories:
145 64cd4730 Antony Chazapis
                    if (fnmatchcase(name, pattern)
146 5ce3ce4f Sofia Papagiannaki
                            or fn.lower() == pattern.lower()):
147 64cd4730 Antony Chazapis
                        bad_name = True
148 64cd4730 Antony Chazapis
                        if show_ignored:
149 64cd4730 Antony Chazapis
                            print >> sys.stderr, (
150 64cd4730 Antony Chazapis
                                "Directory %s ignored by pattern %s"
151 64cd4730 Antony Chazapis
                                % (fn, pattern))
152 64cd4730 Antony Chazapis
                        break
153 64cd4730 Antony Chazapis
                if bad_name:
154 64cd4730 Antony Chazapis
                    continue
155 27993be5 Kostas Papadimitriou
                if (os.path.isfile(os.path.join(fn, "__init__.py"))
156 5ce3ce4f Sofia Papagiannaki
                        and not prefix):
157 64cd4730 Antony Chazapis
                    if not package:
158 64cd4730 Antony Chazapis
                        new_package = name
159 64cd4730 Antony Chazapis
                    else:
160 27993be5 Kostas Papadimitriou
                        new_package = package + "." + name
161 27993be5 Kostas Papadimitriou
                    stack.append((fn, "", new_package, False))
162 64cd4730 Antony Chazapis
                else:
163 5ce3ce4f Sofia Papagiannaki
                    stack.append(
164 5ce3ce4f Sofia Papagiannaki
                        (fn, prefix + name + "/", package, only_in_packages))
165 64cd4730 Antony Chazapis
            elif package or not only_in_packages:
166 64cd4730 Antony Chazapis
                # is a file
167 64cd4730 Antony Chazapis
                bad_name = False
168 64cd4730 Antony Chazapis
                for pattern in exclude:
169 64cd4730 Antony Chazapis
                    if (fnmatchcase(name, pattern)
170 5ce3ce4f Sofia Papagiannaki
                            or fn.lower() == pattern.lower()):
171 64cd4730 Antony Chazapis
                        bad_name = True
172 64cd4730 Antony Chazapis
                        if show_ignored:
173 64cd4730 Antony Chazapis
                            print >> sys.stderr, (
174 64cd4730 Antony Chazapis
                                "File %s ignored by pattern %s"
175 64cd4730 Antony Chazapis
                                % (fn, pattern))
176 64cd4730 Antony Chazapis
                        break
177 64cd4730 Antony Chazapis
                if bad_name:
178 64cd4730 Antony Chazapis
                    continue
179 5ce3ce4f Sofia Papagiannaki
                out.setdefault(package, []).append(prefix + name)
180 64cd4730 Antony Chazapis
    return out
181 64cd4730 Antony Chazapis
182 64cd4730 Antony Chazapis
setup(
183 a11acc65 Kostas Papadimitriou
    name='snf-astakos-app',
184 64cd4730 Antony Chazapis
    version=VERSION,
185 64cd4730 Antony Chazapis
    license='BSD',
186 5adcc57e Christos Stavrakakis
    url='http://www.synnefo.org/',
187 5ce3ce4f Sofia Papagiannaki
    description=SHORT_DESCRIPTION,
188 5ce3ce4f Sofia Papagiannaki
    classifiers=CLASSIFIERS,
189 5adcc57e Christos Stavrakakis
190 5adcc57e Christos Stavrakakis
    author='Synnefo development team',
191 5adcc57e Christos Stavrakakis
    author_email='synnefo-devel@googlegroups.com',
192 5adcc57e Christos Stavrakakis
    maintainer='Synnefo development team',
193 5adcc57e Christos Stavrakakis
    maintainer_email='synnefo-devel@googlegroups.com',
194 a11acc65 Kostas Papadimitriou
195 64cd4730 Antony Chazapis
    packages=find_packages(),
196 64cd4730 Antony Chazapis
    include_package_data=True,
197 64cd4730 Antony Chazapis
    package_data=find_package_data('.'),
198 64cd4730 Antony Chazapis
    zip_safe=False,
199 a11acc65 Kostas Papadimitriou
200 5ce3ce4f Sofia Papagiannaki
    install_requires=INSTALL_REQUIRES,
201 a11acc65 Kostas Papadimitriou
202 3eea2bc3 Constantinos Venetsanopoulos
    dependency_links=['http://www.synnefo.org/packages/pypi'],
203 a11acc65 Kostas Papadimitriou
204 b4109758 Giorgos Korfiatis
    scripts=['astakos/scripts/snf-component-register'],
205 64cd4730 Antony Chazapis
    entry_points={
206 a11acc65 Kostas Papadimitriou
        'synnefo': [
207 6bd4129b Kostas Papadimitriou
            'default_settings = astakos.synnefo_settings',
208 6bd4129b Kostas Papadimitriou
            'web_apps = astakos.synnefo_settings:installed_apps',
209 6bd4129b Kostas Papadimitriou
            'web_middleware = astakos.synnefo_settings:middlware_classes',
210 6bd4129b Kostas Papadimitriou
            'web_context_processors = astakos.synnefo_settings:context_processors',
211 5ce3ce4f Sofia Papagiannaki
            'urls = astakos.urls:urlpatterns',
212 6bd4129b Kostas Papadimitriou
            'web_static = astakos.synnefo_settings:static_files'
213 1f5565c3 Giorgos Korfiatis
        ],
214 1f5565c3 Giorgos Korfiatis
        'console_scripts': [
215 21879b7f Giorgos Korfiatis
            'snf-service-export = astakos.scripts.snf_service_export:main',
216 1f5565c3 Giorgos Korfiatis
        ],
217 64cd4730 Antony Chazapis
    }
218 64cd4730 Antony Chazapis
)