root / snf-astakos-app / setup.py @ f289215d
History | View | Annotate | Download (7.3 kB)
1 | 64cd4730 | Antony Chazapis | #!/usr/bin/env python
|
---|---|---|---|
2 | 64cd4730 | Antony Chazapis | |
3 | aba1e498 | Antony Chazapis | # Copyright 2011-2012 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 | from astakos import get_version |
46 | 64cd4730 | Antony Chazapis | |
47 | 64cd4730 | Antony Chazapis | |
48 | 27993be5 | Kostas Papadimitriou | HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__))) |
49 | 27993be5 | Kostas Papadimitriou | try:
|
50 | 27993be5 | Kostas Papadimitriou | # try to update the version file
|
51 | 27993be5 | Kostas Papadimitriou | from synnefo.util import version |
52 | 27993be5 | Kostas Papadimitriou | version.update_version('astakos', 'version', HERE) |
53 | 27993be5 | Kostas Papadimitriou | except ImportError: |
54 | 27993be5 | Kostas Papadimitriou | pass
|
55 | 27993be5 | Kostas Papadimitriou | |
56 | 27993be5 | Kostas Papadimitriou | from astakos.version import __version__ |
57 | 27993be5 | Kostas Papadimitriou | |
58 | 27993be5 | Kostas Papadimitriou | # Package info
|
59 | 27993be5 | Kostas Papadimitriou | VERSION = __version__ |
60 | 27993be5 | Kostas Papadimitriou | README = open(os.path.join(HERE, 'README')).read() |
61 | 27993be5 | Kostas Papadimitriou | CHANGES = open(os.path.join(HERE, 'Changelog')).read() |
62 | 27993be5 | Kostas Papadimitriou | SHORT_DESCRIPTION = 'Package short description'
|
63 | 27993be5 | Kostas Papadimitriou | |
64 | 27993be5 | Kostas Papadimitriou | PACKAGES_ROOT = '.'
|
65 | 27993be5 | Kostas Papadimitriou | PACKAGES = find_packages(PACKAGES_ROOT) |
66 | 27993be5 | Kostas Papadimitriou | |
67 | 27993be5 | Kostas Papadimitriou | # Package meta
|
68 | 27993be5 | Kostas Papadimitriou | CLASSIFIERS = [ |
69 | 27993be5 | Kostas Papadimitriou | 'Development Status :: 3 - Alpha',
|
70 | 27993be5 | Kostas Papadimitriou | 'Operating System :: OS Independent',
|
71 | 27993be5 | Kostas Papadimitriou | 'Programming Language :: Python',
|
72 | 27993be5 | Kostas Papadimitriou | 'Topic :: Utilities',
|
73 | 27993be5 | Kostas Papadimitriou | 'License :: OSI Approved :: BSD License',
|
74 | 27993be5 | Kostas Papadimitriou | ] |
75 | 64cd4730 | Antony Chazapis | |
76 | 27993be5 | Kostas Papadimitriou | # Package requirements
|
77 | 64cd4730 | Antony Chazapis | INSTALL_REQUIRES = [ |
78 | 27993be5 | Kostas Papadimitriou | 'Django>=1.2, <1.3',
|
79 | 27993be5 | Kostas Papadimitriou | 'South>=0.7, <=0.7.3',
|
80 | a11acc65 | Kostas Papadimitriou | 'httplib2==0.6.0',
|
81 | 477889c4 | Kostas Papadimitriou | 'snf-common>=0.9.0rc',
|
82 | db7fecd9 | Sofia Papagiannaki | 'recaptcha-client>=1.0.5'
|
83 | 64cd4730 | Antony Chazapis | ] |
84 | 64cd4730 | Antony Chazapis | |
85 | 27993be5 | Kostas Papadimitriou | EXTRAS_REQUIRES = { |
86 | 27993be5 | Kostas Papadimitriou | } |
87 | 64cd4730 | Antony Chazapis | |
88 | 27993be5 | Kostas Papadimitriou | TESTS_REQUIRES = [ |
89 | 27993be5 | Kostas Papadimitriou | ] |
90 | 27993be5 | Kostas Papadimitriou | |
91 | 27993be5 | Kostas Papadimitriou | # Provided as an attribute, so you can append to these instead
|
92 | 27993be5 | Kostas Papadimitriou | # of replicating them:
|
93 | 27993be5 | Kostas Papadimitriou | standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"] |
94 | 27993be5 | Kostas Papadimitriou | standard_exclude_directories = [ |
95 | 27993be5 | Kostas Papadimitriou | ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", "snf-0.7" |
96 | 27993be5 | Kostas Papadimitriou | ] |
97 | 64cd4730 | Antony Chazapis | |
98 | 64cd4730 | Antony Chazapis | # (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
|
99 | 64cd4730 | Antony Chazapis | # Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
|
100 | 64cd4730 | Antony Chazapis | # Note: you may want to copy this into your setup.py file verbatim, as
|
101 | 64cd4730 | Antony Chazapis | # you can't import this from another package, when you don't know if
|
102 | 64cd4730 | Antony Chazapis | # that package is installed yet.
|
103 | 64cd4730 | Antony Chazapis | def find_package_data( |
104 | 27993be5 | Kostas Papadimitriou | where=".",
|
105 | 27993be5 | Kostas Papadimitriou | package="",
|
106 | 64cd4730 | Antony Chazapis | exclude=standard_exclude, |
107 | 64cd4730 | Antony Chazapis | exclude_directories=standard_exclude_directories, |
108 | 64cd4730 | Antony Chazapis | only_in_packages=True,
|
109 | 64cd4730 | Antony Chazapis | show_ignored=False):
|
110 | 64cd4730 | Antony Chazapis | """
|
111 | 64cd4730 | Antony Chazapis | Return a dictionary suitable for use in ``package_data``
|
112 | 64cd4730 | Antony Chazapis | in a distutils ``setup.py`` file.
|
113 | 64cd4730 | Antony Chazapis |
|
114 | 64cd4730 | Antony Chazapis | The dictionary looks like::
|
115 | 64cd4730 | Antony Chazapis |
|
116 | 27993be5 | Kostas Papadimitriou | {"package": [files]}
|
117 | 64cd4730 | Antony Chazapis |
|
118 | 64cd4730 | Antony Chazapis | Where ``files`` is a list of all the files in that package that
|
119 | 27993be5 | Kostas Papadimitriou | don"t match anything in ``exclude``.
|
120 | 64cd4730 | Antony Chazapis |
|
121 | 64cd4730 | Antony Chazapis | If ``only_in_packages`` is true, then top-level directories that
|
122 | 27993be5 | Kostas Papadimitriou | are not packages won"t be included (but directories under packages
|
123 | 64cd4730 | Antony Chazapis | will).
|
124 | 64cd4730 | Antony Chazapis |
|
125 | 64cd4730 | Antony Chazapis | Directories matching any pattern in ``exclude_directories`` will
|
126 | 64cd4730 | Antony Chazapis | be ignored; by default directories with leading ``.``, ``CVS``,
|
127 | 64cd4730 | Antony Chazapis | and ``_darcs`` will be ignored.
|
128 | 64cd4730 | Antony Chazapis |
|
129 | 27993be5 | Kostas Papadimitriou | If ``show_ignored`` is true, then all the files that aren"t
|
130 | 64cd4730 | Antony Chazapis | included in package data are shown on stderr (for debugging
|
131 | 64cd4730 | Antony Chazapis | purposes).
|
132 | 64cd4730 | Antony Chazapis |
|
133 | 64cd4730 | Antony Chazapis | Note patterns use wildcards, or can be exact paths (including
|
134 | 64cd4730 | Antony Chazapis | leading ``./``), and all searching is case-insensitive.
|
135 | 64cd4730 | Antony Chazapis | """
|
136 | 64cd4730 | Antony Chazapis | out = {} |
137 | 27993be5 | Kostas Papadimitriou | stack = [(convert_path(where), "", package, only_in_packages)]
|
138 | 64cd4730 | Antony Chazapis | while stack:
|
139 | 64cd4730 | Antony Chazapis | where, prefix, package, only_in_packages = stack.pop(0)
|
140 | 64cd4730 | Antony Chazapis | for name in os.listdir(where): |
141 | 64cd4730 | Antony Chazapis | fn = os.path.join(where, name) |
142 | 64cd4730 | Antony Chazapis | if os.path.isdir(fn):
|
143 | 64cd4730 | Antony Chazapis | bad_name = False
|
144 | 64cd4730 | Antony Chazapis | for pattern in exclude_directories: |
145 | 64cd4730 | Antony Chazapis | if (fnmatchcase(name, pattern)
|
146 | 64cd4730 | Antony Chazapis | or fn.lower() == pattern.lower()):
|
147 | 64cd4730 | Antony Chazapis | bad_name = True
|
148 | 64cd4730 | Antony Chazapis | if show_ignored:
|
149 | 64cd4730 | Antony Chazapis | print >> sys.stderr, (
|
150 | 64cd4730 | Antony Chazapis | "Directory %s ignored by pattern %s"
|
151 | 64cd4730 | Antony Chazapis | % (fn, pattern)) |
152 | 64cd4730 | Antony Chazapis | break
|
153 | 64cd4730 | Antony Chazapis | if bad_name:
|
154 | 64cd4730 | Antony Chazapis | continue
|
155 | 27993be5 | Kostas Papadimitriou | if (os.path.isfile(os.path.join(fn, "__init__.py")) |
156 | 64cd4730 | Antony Chazapis | and not prefix): |
157 | 64cd4730 | Antony Chazapis | if not package: |
158 | 64cd4730 | Antony Chazapis | new_package = name |
159 | 64cd4730 | Antony Chazapis | else:
|
160 | 27993be5 | Kostas Papadimitriou | new_package = package + "." + name
|
161 | 27993be5 | Kostas Papadimitriou | stack.append((fn, "", new_package, False)) |
162 | 64cd4730 | Antony Chazapis | else:
|
163 | 27993be5 | Kostas Papadimitriou | stack.append((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 | 64cd4730 | Antony Chazapis | 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 | 64cd4730 | Antony Chazapis | 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 | 64cd4730 | Antony Chazapis | url='http://code.grnet.gr/projects/astakos',
|
186 | 27993be5 | Kostas Papadimitriou | description = SHORT_DESCRIPTION, |
187 | 27993be5 | Kostas Papadimitriou | long_description=README + '\n\n' + CHANGES,
|
188 | 27993be5 | Kostas Papadimitriou | classifiers = CLASSIFIERS, |
189 | 64cd4730 | Antony Chazapis | author='GRNET',
|
190 | 64cd4730 | Antony Chazapis | author_email='astakos@grnet.gr',
|
191 | a11acc65 | Kostas Papadimitriou | |
192 | 64cd4730 | Antony Chazapis | packages=find_packages(), |
193 | 64cd4730 | Antony Chazapis | include_package_data=True,
|
194 | 64cd4730 | Antony Chazapis | package_data=find_package_data('.'),
|
195 | 64cd4730 | Antony Chazapis | zip_safe=False,
|
196 | a11acc65 | Kostas Papadimitriou | |
197 | a11acc65 | Kostas Papadimitriou | install_requires = INSTALL_REQUIRES, |
198 | a11acc65 | Kostas Papadimitriou | |
199 | a11acc65 | Kostas Papadimitriou | dependency_links = ['http://docs.dev.grnet.gr/pypi'],
|
200 | a11acc65 | Kostas Papadimitriou | |
201 | 64cd4730 | Antony Chazapis | entry_points={ |
202 | a11acc65 | Kostas Papadimitriou | 'synnefo': [
|
203 | a11acc65 | Kostas Papadimitriou | 'default_settings = astakos.im.synnefo_settings',
|
204 | a11acc65 | Kostas Papadimitriou | 'web_apps = astakos.im.synnefo_settings:installed_apps',
|
205 | a11acc65 | Kostas Papadimitriou | 'web_middleware = astakos.im.synnefo_settings:middlware_classes',
|
206 | a11acc65 | Kostas Papadimitriou | 'web_context_processors = astakos.im.synnefo_settings:context_processors',
|
207 | a11acc65 | Kostas Papadimitriou | 'urls = astakos.urls:urlpatterns',
|
208 | 8a7b5c86 | Kostas Papadimitriou | 'web_static = astakos.im.synnefo_settings:static_files',
|
209 | 8a7b5c86 | Kostas Papadimitriou | 'loggers = astakos.im.synnefo_settings:loggers'
|
210 | a11acc65 | Kostas Papadimitriou | ] |
211 | 64cd4730 | Antony Chazapis | } |
212 | 64cd4730 | Antony Chazapis | ) |