Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / setup.py @ bb528b2e

History | View | Annotate | Download (7.4 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 3317f0e9 Georgios D. Tsoukalas
    'astakosclient',
81 64cd4730 Antony Chazapis
]
82 64cd4730 Antony Chazapis
83 27993be5 Kostas Papadimitriou
EXTRAS_REQUIRES = {
84 27993be5 Kostas Papadimitriou
}
85 64cd4730 Antony Chazapis
86 27993be5 Kostas Papadimitriou
TESTS_REQUIRES = [
87 27993be5 Kostas Papadimitriou
]
88 27993be5 Kostas Papadimitriou
89 27993be5 Kostas Papadimitriou
# Provided as an attribute, so you can append to these instead
90 27993be5 Kostas Papadimitriou
# of replicating them:
91 27993be5 Kostas Papadimitriou
standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"]
92 27993be5 Kostas Papadimitriou
standard_exclude_directories = [
93 8fb8d0cf Giorgos Korfiatis
    ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info",
94 8fb8d0cf Giorgos Korfiatis
    "snf-0.7"
95 27993be5 Kostas Papadimitriou
]
96 64cd4730 Antony Chazapis
97 64cd4730 Antony Chazapis
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
98 64cd4730 Antony Chazapis
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
99 64cd4730 Antony Chazapis
# Note: you may want to copy this into your setup.py file verbatim, as
100 64cd4730 Antony Chazapis
# you can't import this from another package, when you don't know if
101 64cd4730 Antony Chazapis
# that package is installed yet.
102 5ce3ce4f Sofia Papagiannaki
103 5ce3ce4f Sofia Papagiannaki
104 64cd4730 Antony Chazapis
def find_package_data(
105 27993be5 Kostas Papadimitriou
    where=".",
106 27993be5 Kostas Papadimitriou
    package="",
107 64cd4730 Antony Chazapis
    exclude=standard_exclude,
108 64cd4730 Antony Chazapis
    exclude_directories=standard_exclude_directories,
109 64cd4730 Antony Chazapis
    only_in_packages=True,
110 5ce3ce4f Sofia Papagiannaki
        show_ignored=False):
111 64cd4730 Antony Chazapis
    """
112 64cd4730 Antony Chazapis
    Return a dictionary suitable for use in ``package_data``
113 64cd4730 Antony Chazapis
    in a distutils ``setup.py`` file.
114 64cd4730 Antony Chazapis

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

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

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

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

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

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

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