Dynamically set SITE_ID from user environment
[snf-cloudcms] / setup.py
1 # Copyright 2012 GRNET S.A. All rights reserved.
2 #
3 # Redistribution and use in source and binary forms, with or
4 # without modification, are permitted provided that the following
5 # conditions are met:
6 #
7 #   1. Redistributions of source code must retain the above
8 #      copyright notice, this list of conditions and the following
9 #      disclaimer.
10 #
11 #   2. Redistributions in binary form must reproduce the above
12 #      copyright notice, this list of conditions and the following
13 #      disclaimer in the documentation and/or other materials
14 #      provided with the distribution.
15 #
16 # THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
17 # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19 # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
20 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
24 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
26 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27 # POSSIBILITY OF SUCH DAMAGE.
28 #
29 # The views and conclusions contained in the software and
30 # documentation are those of the authors and should not be
31 # interpreted as representing official policies, either expressed
32 # or implied, of GRNET S.A.
33
34
35 import os
36 import sys
37
38 from fnmatch import fnmatchcase
39 from distutils.util import convert_path
40 from setuptools import setup, find_packages
41
42 INSTALL_REQUIRES = [
43     'Django >=1.2.3, <1.3',
44     'South==0.7',
45     'snf-webproject',
46     'feincms >=1.4.2, < 1.5'
47 ]
48 CLASSIFIERS = []
49
50
51 # Provided as an attribute, so you can append to these instead
52 # of replicating them:
53 standard_exclude = ('*.py', '*.pyc', '*$py.class', '*~', '.*', '*.bak')
54 standard_exclude_directories = ('.*', 'CVS', '_darcs', './build',
55                                 './dist', 'EGG-INFO', '*.egg-info')
56
57 def find_package_data(
58     where='.', package='',
59     exclude=standard_exclude,
60     exclude_directories=standard_exclude_directories,
61     only_in_packages=True,
62     show_ignored=False):
63     """
64     Return a dictionary suitable for use in ``package_data``
65     in a distutils ``setup.py`` file.
66
67     The dictionary looks like::
68
69         {'package': [files]}
70
71     Where ``files`` is a list of all the files in that package that
72     don't match anything in ``exclude``.
73
74     If ``only_in_packages`` is true, then top-level directories that
75     are not packages won't be included (but directories under packages
76     will).
77
78     Directories matching any pattern in ``exclude_directories`` will
79     be ignored; by default directories with leading ``.``, ``CVS``,
80     and ``_darcs`` will be ignored.
81
82     If ``show_ignored`` is true, then all the files that aren't
83     included in package data are shown on stderr (for debugging
84     purposes).
85
86     Note patterns use wildcards, or can be exact paths (including
87     leading ``./``), and all searching is case-insensitive.
88     """
89
90     out = {}
91     stack = [(convert_path(where), '', package, only_in_packages)]
92     while stack:
93         where, prefix, package, only_in_packages = stack.pop(0)
94         for name in os.listdir(where):
95             fn = os.path.join(where, name)
96             if os.path.isdir(fn):
97                 bad_name = False
98                 for pattern in exclude_directories:
99                     if (fnmatchcase(name, pattern)
100                         or fn.lower() == pattern.lower()):
101                         bad_name = True
102                         if show_ignored:
103                             print >> sys.stderr, (
104                                 "Directory %s ignored by pattern %s"
105                                 % (fn, pattern))
106                         break
107                 if bad_name:
108                     continue
109                 if (os.path.isfile(os.path.join(fn, '__init__.py'))
110                     and not prefix):
111                     if not package:
112                         new_package = name
113                     else:
114                         new_package = package + '.' + name
115                     stack.append((fn, '', new_package, False))
116                 else:
117                     stack.append((fn, prefix + name + '/', package, only_in_packages))
118             elif package or not only_in_packages:
119                 # is a file
120                 bad_name = False
121                 for pattern in exclude:
122                     if (fnmatchcase(name, pattern)
123                         or fn.lower() == pattern.lower()):
124                         bad_name = True
125                         if show_ignored:
126                             print >> sys.stderr, (
127                                 "File %s ignored by pattern %s"
128                                 % (fn, pattern))
129                         break
130                 if bad_name:
131                     continue
132                 out.setdefault(package, []).append(prefix+name)
133     return out
134
135 from cloudcms import version
136 VERSION = version.__version__
137
138 setup(
139     name = 'snf-cloudcms',
140     version = VERSION,
141     license = 'BSD',
142     url = 'http://code.grnet.gr/',
143     classifiers = CLASSIFIERS,
144
145     author = 'Package author',
146     author_email = 'author@grnet.gr',
147     maintainer = 'Package maintainer',
148     maintainer_email = 'maintainer@grnet.gr',
149
150     packages = find_packages('.'),
151     package_dir= {'': '.'},
152     include_package_data = True,
153     package_data=find_package_data('.'),
154     zip_safe = False,
155
156     install_requires = INSTALL_REQUIRES,
157
158     dependency_links = ['http://docs.dev.grnet.gr/pypi'],
159
160     entry_points = {
161      'synnefo': [
162          'default_settings = cloudcms.synnefo_settings',
163          'web_apps = cloudcms.synnefo_settings:CLOUDCMS_APPS',
164          'web_middleware = cloudcms.synnefo_settings:CLOUDCMS_MIDDLEWARES',
165          'web_context_processors = cloudcms.synnefo_settings:CLOUDCMS_CONTEXT_PROCESSORS',
166          'urls = cloudcms.urls:urlpatterns',
167          'web_static = cloudcms.synnefo_settings:CLOUDCMS_STATICFILES'
168          ]
169     },
170
171 )
172