Statistics
| Branch: | Tag: | Revision:

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

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 27993be5 Kostas Papadimitriou
    'Django>=1.2, <1.3',
69 27993be5 Kostas Papadimitriou
    'South>=0.7, <=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 3317f0e9 Georgios D. Tsoukalas
    'astakosclient',
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 27993be5 Kostas Papadimitriou
    ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", "snf-0.7"
93 27993be5 Kostas Papadimitriou
]
94 64cd4730 Antony Chazapis
95 64cd4730 Antony Chazapis
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
96 64cd4730 Antony Chazapis
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
97 64cd4730 Antony Chazapis
# Note: you may want to copy this into your setup.py file verbatim, as
98 64cd4730 Antony Chazapis
# you can't import this from another package, when you don't know if
99 64cd4730 Antony Chazapis
# that package is installed yet.
100 5ce3ce4f Sofia Papagiannaki
101 5ce3ce4f Sofia Papagiannaki
102 64cd4730 Antony Chazapis
def find_package_data(
103 27993be5 Kostas Papadimitriou
    where=".",
104 27993be5 Kostas Papadimitriou
    package="",
105 64cd4730 Antony Chazapis
    exclude=standard_exclude,
106 64cd4730 Antony Chazapis
    exclude_directories=standard_exclude_directories,
107 64cd4730 Antony Chazapis
    only_in_packages=True,
108 5ce3ce4f Sofia Papagiannaki
        show_ignored=False):
109 64cd4730 Antony Chazapis
    """
110 64cd4730 Antony Chazapis
    Return a dictionary suitable for use in ``package_data``
111 64cd4730 Antony Chazapis
    in a distutils ``setup.py`` file.
112 64cd4730 Antony Chazapis

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

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

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

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

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

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

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