c1b622ae0e8a96650e91f4cd1378a50aa35078f2
[pithos-web-client] / snf-pithos-webclient / setup.py
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
46
47 HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
48
49 from pithos_webclient.version import __version__
50
51 # Package info
52 VERSION = __version__
53 README = open(os.path.join(HERE, 'README')).read()
54 CHANGES = open(os.path.join(HERE, 'Changelog')).read()
55 SHORT_DESCRIPTION = 'Package short description'
56
57 PACKAGES_ROOT = '.'
58 PACKAGES = find_packages(PACKAGES_ROOT)
59
60 # Package meta
61 CLASSIFIERS = [
62         'Development Status :: 3 - Alpha',
63         'Operating System :: OS Independent',
64         'Programming Language :: Python',
65         'Topic :: Utilities',
66         'License :: OSI Approved :: BSD License',
67 ]
68
69 # Package requirements
70 INSTALL_REQUIRES = [
71     'Django>=1.2, <1.3',
72     'snf-common>=0.9.0rc'
73 ]
74
75 EXTRAS_REQUIRES = {
76 }
77
78 TESTS_REQUIRES = [
79 ]
80
81 # Provided as an attribute, so you can append to these instead
82 # of replicating them:
83 standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"]
84 standard_exclude_directories = [
85     ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", "snf-0.7"
86 ]
87
88 # (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
89 # Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
90 # Note: you may want to copy this into your setup.py file verbatim, as
91 # you can't import this from another package, when you don't know if
92 # that package is installed yet.
93 def find_package_data(
94     where=".",
95     package="",
96     exclude=standard_exclude,
97     exclude_directories=standard_exclude_directories,
98     only_in_packages=True,
99     show_ignored=False):
100     """
101     Return a dictionary suitable for use in ``package_data``
102     in a distutils ``setup.py`` file.
103
104     The dictionary looks like::
105
106         {"package": [files]}
107
108     Where ``files`` is a list of all the files in that package that
109     don"t match anything in ``exclude``.
110
111     If ``only_in_packages`` is true, then top-level directories that
112     are not packages won"t be included (but directories under packages
113     will).
114
115     Directories matching any pattern in ``exclude_directories`` will
116     be ignored; by default directories with leading ``.``, ``CVS``,
117     and ``_darcs`` will be ignored.
118
119     If ``show_ignored`` is true, then all the files that aren"t
120     included in package data are shown on stderr (for debugging
121     purposes).
122
123     Note patterns use wildcards, or can be exact paths (including
124     leading ``./``), and all searching is case-insensitive.
125     """
126     out = {}
127     stack = [(convert_path(where), "", package, only_in_packages)]
128     while stack:
129         where, prefix, package, only_in_packages = stack.pop(0)
130         for name in os.listdir(where):
131             fn = os.path.join(where, name)
132             if os.path.isdir(fn):
133                 bad_name = False
134                 for pattern in exclude_directories:
135                     if (fnmatchcase(name, pattern)
136                         or fn.lower() == pattern.lower()):
137                         bad_name = True
138                         if show_ignored:
139                             print >> sys.stderr, (
140                                 "Directory %s ignored by pattern %s"
141                                 % (fn, pattern))
142                         break
143                 if bad_name:
144                     continue
145                 if (os.path.isfile(os.path.join(fn, "__init__.py"))
146                     and not prefix):
147                     if not package:
148                         new_package = name
149                     else:
150                         new_package = package + "." + name
151                     stack.append((fn, "", new_package, False))
152                 else:
153                     stack.append((fn, prefix + name + "/", package, only_in_packages))
154             elif package or not only_in_packages:
155                 # is a file
156                 bad_name = False
157                 for pattern in exclude:
158                     if (fnmatchcase(name, pattern)
159                         or fn.lower() == pattern.lower()):
160                         bad_name = True
161                         if show_ignored:
162                             print >> sys.stderr, (
163                                 "File %s ignored by pattern %s"
164                                 % (fn, pattern))
165                         break
166                 if bad_name:
167                     continue
168                 out.setdefault(package, []).append(prefix+name)
169     return out
170
171
172 """
173 Gwt clea/build helpers
174 """
175 import subprocess as sp
176 import glob
177
178 def clean_gwt(root="../", public_dir="bin/www/gr.grnet.pithos.web.Pithos/"):
179     # skip if no build.xml found (debian build process)
180     if not os.path.exists(os.path.join(root, "build.xml")):
181         return
182
183     curdir = os.getcwd()
184     os.chdir(root)
185     rcode = sp.call(["ant", "clean"])
186     if rcode == 1:
187         raise Exception("GWT clean failed")
188     os.chdir(curdir)
189     pub_dir = os.path.abspath(os.path.join(root, public_dir))
190     static_dir = os.path.abspath(os.path.join("pithos_webclient", "static", \
191         "pithos_webclient"))
192     templates_dir = os.path.abspath(os.path.join("pithos_webclient", \
193         "templates", "pithos_webclient"))
194     clean_static = ["rm", "-r"] + glob.glob(os.path.join(static_dir, "*"))
195     clean_templates = ["rm", "-r"] + glob.glob(os.path.join(templates_dir, "*"))
196
197     # clean dirs
198     if len(clean_static) > 2:
199         sp.call(clean_static)
200     if len(clean_static) > 2:
201         sp.call(clean_templates)
202
203
204 def build_gwt(root="../", public_dir="bin/www/gr.grnet.pithos.web.Pithos/"):
205     # skip if no build.xml found (debian build process)
206     if not os.path.exists(os.path.join(root, "build.xml")):
207         return
208
209     curdir = os.getcwd()
210     os.chdir(root)
211     # run ant on root dir
212     rcode = sp.call(["ant"])
213     if rcode == 1:
214         raise Exception("GWT build failed")
215     os.chdir(curdir)
216
217
218     pub_dir = os.path.abspath(os.path.join(root, public_dir))
219     static_dir = os.path.abspath(os.path.join("pithos_webclient", "static", \
220         "pithos_webclient"))
221     templates_dir = os.path.abspath(os.path.join("pithos_webclient", \
222         "templates", "pithos_webclient"))
223
224     clean_static = ["rm", "-r"] + glob.glob(os.path.join(static_dir, "*"))
225     clean_templates = ["rm", "-r"] + glob.glob(os.path.join(templates_dir, "*"))
226
227     # clean dirs
228     if len(clean_static) > 2:
229         sp.call(clean_static)
230     if len(clean_static) > 2:
231         sp.call(clean_templates)
232
233     copy_static = ["cp", "-r"] + glob.glob(os.path.join(pub_dir, "*")) + [static_dir]
234     copy_index = ["cp", os.path.join(pub_dir, "index.html"), templates_dir]
235     sp.call(copy_static)
236     sp.call(copy_index)
237
238     index = os.path.join(templates_dir, "index.html")
239     index_data = file(index).read()
240     index_data = index_data.replace('href="', 'href="{{ MEDIA_URL }}pithos_webclient/')
241     index_data = index_data.replace('" src="', '" src="{{ MEDIA_URL }}pithos_webclient/')
242     index_data = index_data.replace('\' src=\'', '\' src=\'{{ MEDIA_URL }}pithos_webclient/')
243     index_data = index_data.replace('url(', 'url({{ MEDIA_URL }}pithos_webclient/')
244
245     index_data = index_data.replace("{{ CLOUDBAR_CODE }}", """
246             {{ CLOUDBAR_CODE }}
247             <script>
248             var CLOUDBAR_ACTIVE_SERVICE = "{{ PITHOS_UI_CLOUDBAR_ACTIVE_SERVICE }}"
249             </script>
250     """)
251
252     ifile = file(index, "w+")
253     ifile.write(index_data)
254     ifile.close()
255
256
257 # do we need to run ant ???
258 if any(x in ''.join(sys.argv) for x in ["sdist", "build", "develop", "install"]):
259     build_gwt()
260
261 if any(x in ''.join(sys.argv) for x in ["clean"]):
262     clean_gwt()
263
264
265 setup(
266     name='snf-pithos-webclient',
267     version=VERSION,
268     license='BSD',
269     url='http://code.grnet.gr/projects/pithos-web-client',
270     description = SHORT_DESCRIPTION,
271     long_description=README + '\n\n' +  CHANGES,
272     classifiers = CLASSIFIERS,
273     author='GRNET',
274     author_email='pithos@grnet.gr',
275
276     packages=find_packages(),
277     include_package_data=True,
278     package_data=find_package_data('.'),
279     zip_safe=False,
280
281     install_requires = INSTALL_REQUIRES,
282
283     dependency_links = ['http://docs.dev.grnet.gr/pypi'],
284
285     entry_points={
286         'synnefo': [
287              'web_apps = pithos_webclient.synnefo_settings:installed_apps',
288              'urls = pithos_webclient.synnefo_settings:urlpatterns',
289              'web_static = pithos_webclient.synnefo_settings:static_files',
290              'web_context_processors = pithos_webclient.synnefo_settings:context_processors'
291         ]
292     }
293 )
294