root / snf-astakos-app / setup.py @ a6020daf
History | View | Annotate | Download (7.4 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 |
SHORT_DESCRIPTION = 'Synnefo Identity Management component'
|
53 |
|
54 |
PACKAGES_ROOT = '.'
|
55 |
PACKAGES = find_packages(PACKAGES_ROOT) |
56 |
|
57 |
# Package meta
|
58 |
CLASSIFIERS = [ |
59 |
'Development Status :: 3 - Alpha',
|
60 |
'Operating System :: OS Independent',
|
61 |
'Programming Language :: Python',
|
62 |
'Topic :: Utilities',
|
63 |
'License :: OSI Approved :: BSD License',
|
64 |
] |
65 |
|
66 |
# Package requirements
|
67 |
INSTALL_REQUIRES = [ |
68 |
'Django>=1.2, <1.3',
|
69 |
'South>=0.7.3',
|
70 |
'httplib2>=0.6.0',
|
71 |
'snf-common',
|
72 |
'django-tables2',
|
73 |
'recaptcha-client>=1.0.5',
|
74 |
'django-ratelimit==0.1',
|
75 |
'requests',
|
76 |
'inflect',
|
77 |
'snf-django-lib',
|
78 |
'snf-branding',
|
79 |
'snf-webproject',
|
80 |
'astakosclient',
|
81 |
] |
82 |
|
83 |
EXTRAS_REQUIRES = { |
84 |
} |
85 |
|
86 |
TESTS_REQUIRES = [ |
87 |
] |
88 |
|
89 |
# Provided as an attribute, so you can append to these instead
|
90 |
# of replicating them:
|
91 |
standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"] |
92 |
standard_exclude_directories = [ |
93 |
".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", |
94 |
"snf-0.7"
|
95 |
] |
96 |
|
97 |
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
|
98 |
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
99 |
# Note: you may want to copy this into your setup.py file verbatim, as
|
100 |
# you can't import this from another package, when you don't know if
|
101 |
# that package is installed yet.
|
102 |
|
103 |
|
104 |
def find_package_data( |
105 |
where=".",
|
106 |
package="",
|
107 |
exclude=standard_exclude, |
108 |
exclude_directories=standard_exclude_directories, |
109 |
only_in_packages=True,
|
110 |
show_ignored=False):
|
111 |
"""
|
112 |
Return a dictionary suitable for use in ``package_data``
|
113 |
in a distutils ``setup.py`` file.
|
114 |
|
115 |
The dictionary looks like::
|
116 |
|
117 |
{"package": [files]}
|
118 |
|
119 |
Where ``files`` is a list of all the files in that package that
|
120 |
don"t match anything in ``exclude``.
|
121 |
|
122 |
If ``only_in_packages`` is true, then top-level directories that
|
123 |
are not packages won"t be included (but directories under packages
|
124 |
will).
|
125 |
|
126 |
Directories matching any pattern in ``exclude_directories`` will
|
127 |
be ignored; by default directories with leading ``.``, ``CVS``,
|
128 |
and ``_darcs`` will be ignored.
|
129 |
|
130 |
If ``show_ignored`` is true, then all the files that aren"t
|
131 |
included in package data are shown on stderr (for debugging
|
132 |
purposes).
|
133 |
|
134 |
Note patterns use wildcards, or can be exact paths (including
|
135 |
leading ``./``), and all searching is case-insensitive.
|
136 |
"""
|
137 |
out = {} |
138 |
stack = [(convert_path(where), "", package, only_in_packages)]
|
139 |
while stack:
|
140 |
where, prefix, package, only_in_packages = stack.pop(0)
|
141 |
for name in os.listdir(where): |
142 |
fn = os.path.join(where, name) |
143 |
if os.path.isdir(fn):
|
144 |
bad_name = False
|
145 |
for pattern in exclude_directories: |
146 |
if (fnmatchcase(name, pattern)
|
147 |
or fn.lower() == pattern.lower()):
|
148 |
bad_name = True
|
149 |
if show_ignored:
|
150 |
print >> sys.stderr, (
|
151 |
"Directory %s ignored by pattern %s"
|
152 |
% (fn, pattern)) |
153 |
break
|
154 |
if bad_name:
|
155 |
continue
|
156 |
if (os.path.isfile(os.path.join(fn, "__init__.py")) |
157 |
and not prefix): |
158 |
if not package: |
159 |
new_package = name |
160 |
else:
|
161 |
new_package = package + "." + name
|
162 |
stack.append((fn, "", new_package, False)) |
163 |
else:
|
164 |
stack.append( |
165 |
(fn, prefix + name + "/", package, only_in_packages))
|
166 |
elif package or not only_in_packages: |
167 |
# is a file
|
168 |
bad_name = False
|
169 |
for pattern in exclude: |
170 |
if (fnmatchcase(name, pattern)
|
171 |
or fn.lower() == pattern.lower()):
|
172 |
bad_name = True
|
173 |
if show_ignored:
|
174 |
print >> sys.stderr, (
|
175 |
"File %s ignored by pattern %s"
|
176 |
% (fn, pattern)) |
177 |
break
|
178 |
if bad_name:
|
179 |
continue
|
180 |
out.setdefault(package, []).append(prefix + name) |
181 |
return out
|
182 |
|
183 |
setup( |
184 |
name='snf-astakos-app',
|
185 |
version=VERSION, |
186 |
license='BSD',
|
187 |
url='http://www.synnefo.org/',
|
188 |
description=SHORT_DESCRIPTION, |
189 |
classifiers=CLASSIFIERS, |
190 |
|
191 |
author='Synnefo development team',
|
192 |
author_email='synnefo-devel@googlegroups.com',
|
193 |
maintainer='Synnefo development team',
|
194 |
maintainer_email='synnefo-devel@googlegroups.com',
|
195 |
|
196 |
packages=find_packages(), |
197 |
include_package_data=True,
|
198 |
package_data=find_package_data('.'),
|
199 |
zip_safe=False,
|
200 |
|
201 |
install_requires=INSTALL_REQUIRES, |
202 |
|
203 |
dependency_links=['http://www.synnefo.org/packages/pypi'],
|
204 |
|
205 |
scripts=['astakos/scripts/snf-component-register'],
|
206 |
entry_points={ |
207 |
'synnefo': [
|
208 |
'default_settings = astakos.synnefo_settings',
|
209 |
'web_apps = astakos.synnefo_settings:installed_apps',
|
210 |
'web_middleware = astakos.synnefo_settings:middlware_classes',
|
211 |
'web_context_processors = astakos.synnefo_settings:context_processors',
|
212 |
'urls = astakos.urls:urlpatterns',
|
213 |
'web_static = astakos.synnefo_settings:static_files'
|
214 |
], |
215 |
'console_scripts': [
|
216 |
'snf-service-export = astakos.scripts.snf_service_export:main',
|
217 |
], |
218 |
} |
219 |
) |