root / setup.py @ a11acc65
History | View | Annotate | Download (6.8 kB)
1 |
#!/usr/bin/env python
|
---|---|
2 |
|
3 |
# Copyright 2011-2012 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 |
from astakos import get_version |
46 |
|
47 |
|
48 |
VERSION = get_version().replace(' ', '') |
49 |
|
50 |
INSTALL_REQUIRES = [ |
51 |
'Django==1.2.3, <1.3',
|
52 |
'South==0.7',
|
53 |
'httplib2==0.6.0',
|
54 |
'snf-pithos-backend'
|
55 |
] |
56 |
|
57 |
|
58 |
def read(fname): |
59 |
return open(os.path.join(os.path.dirname(__file__), fname)).read() |
60 |
|
61 |
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
|
62 |
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
63 |
# Note: you may want to copy this into your setup.py file verbatim, as
|
64 |
# you can't import this from another package, when you don't know if
|
65 |
# that package is installed yet.
|
66 |
|
67 |
# Provided as an attribute, so you can append to these instead
|
68 |
# of replicating them:
|
69 |
standard_exclude = ('*.py', '*.pyc', '*$py.class', '*~', '.*', '*.bak') |
70 |
standard_exclude_directories = ('.*', 'CVS', '_darcs', './build', |
71 |
'./dist', 'EGG-INFO', '*.egg-info') |
72 |
|
73 |
def find_package_data( |
74 |
where='.', package='', |
75 |
exclude=standard_exclude, |
76 |
exclude_directories=standard_exclude_directories, |
77 |
only_in_packages=True,
|
78 |
show_ignored=False):
|
79 |
"""
|
80 |
Return a dictionary suitable for use in ``package_data``
|
81 |
in a distutils ``setup.py`` file.
|
82 |
|
83 |
The dictionary looks like::
|
84 |
|
85 |
{'package': [files]}
|
86 |
|
87 |
Where ``files`` is a list of all the files in that package that
|
88 |
don't match anything in ``exclude``.
|
89 |
|
90 |
If ``only_in_packages`` is true, then top-level directories that
|
91 |
are not packages won't be included (but directories under packages
|
92 |
will).
|
93 |
|
94 |
Directories matching any pattern in ``exclude_directories`` will
|
95 |
be ignored; by default directories with leading ``.``, ``CVS``,
|
96 |
and ``_darcs`` will be ignored.
|
97 |
|
98 |
If ``show_ignored`` is true, then all the files that aren't
|
99 |
included in package data are shown on stderr (for debugging
|
100 |
purposes).
|
101 |
|
102 |
Note patterns use wildcards, or can be exact paths (including
|
103 |
leading ``./``), and all searching is case-insensitive.
|
104 |
"""
|
105 |
|
106 |
out = {} |
107 |
stack = [(convert_path(where), '', package, only_in_packages)]
|
108 |
while stack:
|
109 |
where, prefix, package, only_in_packages = stack.pop(0)
|
110 |
for name in os.listdir(where): |
111 |
fn = os.path.join(where, name) |
112 |
if os.path.isdir(fn):
|
113 |
bad_name = False
|
114 |
for pattern in exclude_directories: |
115 |
if (fnmatchcase(name, pattern)
|
116 |
or fn.lower() == pattern.lower()):
|
117 |
bad_name = True
|
118 |
if show_ignored:
|
119 |
print >> sys.stderr, (
|
120 |
"Directory %s ignored by pattern %s"
|
121 |
% (fn, pattern)) |
122 |
break
|
123 |
if bad_name:
|
124 |
continue
|
125 |
if (os.path.isfile(os.path.join(fn, '__init__.py')) |
126 |
and not prefix): |
127 |
if not package: |
128 |
new_package = name |
129 |
else:
|
130 |
new_package = package + '.' + name
|
131 |
stack.append((fn, '', new_package, False)) |
132 |
else:
|
133 |
stack.append((fn, prefix + name + '/', package, only_in_packages))
|
134 |
elif package or not only_in_packages: |
135 |
# is a file
|
136 |
bad_name = False
|
137 |
for pattern in exclude: |
138 |
if (fnmatchcase(name, pattern)
|
139 |
or fn.lower() == pattern.lower()):
|
140 |
bad_name = True
|
141 |
if show_ignored:
|
142 |
print >> sys.stderr, (
|
143 |
"File %s ignored by pattern %s"
|
144 |
% (fn, pattern)) |
145 |
break
|
146 |
if bad_name:
|
147 |
continue
|
148 |
out.setdefault(package, []).append(prefix+name) |
149 |
return out
|
150 |
|
151 |
setup( |
152 |
name='snf-astakos-app',
|
153 |
version=VERSION, |
154 |
license='BSD',
|
155 |
url='http://code.grnet.gr/projects/astakos',
|
156 |
description='Astakos identity management service and tools',
|
157 |
long_description=read('README'),
|
158 |
classifiers=[ |
159 |
'Development Status :: 3 - Alpha',
|
160 |
'Operating System :: OS Independent',
|
161 |
'Programming Language :: Python',
|
162 |
'Topic :: Utilities',
|
163 |
'License :: OSI Approved :: BSD License',
|
164 |
], |
165 |
|
166 |
author='GRNET',
|
167 |
author_email='astakos@grnet.gr',
|
168 |
|
169 |
packages=find_packages(), |
170 |
include_package_data=True,
|
171 |
package_data=find_package_data('.'),
|
172 |
zip_safe=False,
|
173 |
|
174 |
install_requires = INSTALL_REQUIRES, |
175 |
|
176 |
dependency_links = ['http://docs.dev.grnet.gr/pypi'],
|
177 |
|
178 |
entry_points={ |
179 |
'console_scripts': ['astakos-manage = astakos.manage:main'], |
180 |
'synnefo': [
|
181 |
'default_settings = astakos.im.synnefo_settings',
|
182 |
'web_apps = astakos.im.synnefo_settings:installed_apps',
|
183 |
'web_middleware = astakos.im.synnefo_settings:middlware_classes',
|
184 |
'web_context_processors = astakos.im.synnefo_settings:context_processors',
|
185 |
'urls = astakos.urls:urlpatterns',
|
186 |
'web_static = astakos.im.synnefo_settings:static_files'
|
187 |
] |
188 |
} |
189 |
) |
190 |
|