Statistics
| Branch: | Tag: | Revision:

root / snf-app / setup.py @ 3d975c75

History | View | Annotate | Download (7.5 kB)

1
# Copyright 2011 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 distribute_setup
36
distribute_setup.use_setuptools()
37

    
38
import os
39

    
40
from distutils.util import convert_path
41
from fnmatch import fnmatchcase
42
from setuptools import setup, find_packages
43
from synnefo.util.version import update_version
44

    
45
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
46
update_version('synnefo.versions', 'app', HERE)
47
from synnefo.versions.app import __version__
48

    
49
# Package info
50
VERSION = __version__
51
README = open(os.path.join(HERE, 'README')).read()
52
CHANGES = open(os.path.join(HERE, 'Changelog')).read()
53
SHORT_DESCRIPTION = 'Package short description'
54

    
55
PACKAGES_ROOT = '.'
56
PACKAGES = find_packages(PACKAGES_ROOT)
57

    
58
# Package meta
59
CLASSIFIERS = []
60

    
61
# Package requirements
62
INSTALL_REQUIRES = [
63
    'Django>=1.2.4',
64
    'simplejson>=2.1.2',
65
    'pycurl==7.19.0',
66
    'python-dateutil==1.4.1',
67
    'IPy>=0.70',
68
    'South>=0.7',
69
    'pycrypto==2.1.0',
70
    'amqplib==0.6.1',
71
    'python-daemon==1.5.5'
72
]
73

    
74
EXTRAS_REQUIRES = {
75
        'DISPATCHER': ['amqplib==0.6.1', 'python-daemon==1.5.5',],
76
        'INVITATIONS': ['pycrypto==2.1.0'],
77
        'SSH_KEYS': ['pycrypto==2.1.0'],
78
        'BURNIN': ['unittest2==0.5.1', 'paramiko==1.7.6', 'python-prctl==1.3.0']
79
}
80

    
81
TESTS_REQUIRES = [
82
]
83

    
84

    
85
# Provided as an attribute, so you can append to these instead
86
# of replicating them:
87
standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"]
88
standard_exclude_directories = [
89
    ".*", "CVS", "_darcs", "./build", "./dist", "EGG-INFO", "*.egg-info", "snf-0.7"
90
]
91

    
92
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
93
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
94
# Note: you may want to copy this into your setup.py file verbatim, as
95
# you can't import this from another package, when you don't know if
96
# that package is installed yet.
97
def find_package_data(
98
    where=".",
99
    package="",
100
    exclude=standard_exclude,
101
    exclude_directories=standard_exclude_directories,
102
    only_in_packages=True,
103
    show_ignored=False):
104
    """
105
    Return a dictionary suitable for use in ``package_data``
106
    in a distutils ``setup.py`` file.
107

108
    The dictionary looks like::
109

110
        {"package": [files]}
111

112
    Where ``files`` is a list of all the files in that package that
113
    don"t match anything in ``exclude``.
114

115
    If ``only_in_packages`` is true, then top-level directories that
116
    are not packages won"t be included (but directories under packages
117
    will).
118

119
    Directories matching any pattern in ``exclude_directories`` will
120
    be ignored; by default directories with leading ``.``, ``CVS``,
121
    and ``_darcs`` will be ignored.
122

123
    If ``show_ignored`` is true, then all the files that aren"t
124
    included in package data are shown on stderr (for debugging
125
    purposes).
126

127
    Note patterns use wildcards, or can be exact paths (including
128
    leading ``./``), and all searching is case-insensitive.
129
    """
130
    out = {}
131
    stack = [(convert_path(where), "", package, only_in_packages)]
132
    while stack:
133
        where, prefix, package, only_in_packages = stack.pop(0)
134
        for name in os.listdir(where):
135
            fn = os.path.join(where, name)
136
            if os.path.isdir(fn):
137
                bad_name = False
138
                for pattern in exclude_directories:
139
                    if (fnmatchcase(name, pattern)
140
                        or fn.lower() == pattern.lower()):
141
                        bad_name = True
142
                        if show_ignored:
143
                            print >> sys.stderr, (
144
                                "Directory %s ignored by pattern %s"
145
                                % (fn, pattern))
146
                        break
147
                if bad_name:
148
                    continue
149
                if (os.path.isfile(os.path.join(fn, "__init__.py"))
150
                    and not prefix):
151
                    if not package:
152
                        new_package = name
153
                    else:
154
                        new_package = package + "." + name
155
                    stack.append((fn, "", new_package, False))
156
                else:
157
                    stack.append((fn, prefix + name + "/", package, only_in_packages))
158
            elif package or not only_in_packages:
159
                # is a file
160
                bad_name = False
161
                for pattern in exclude:
162
                    if (fnmatchcase(name, pattern)
163
                        or fn.lower() == pattern.lower()):
164
                        bad_name = True
165
                        if show_ignored:
166
                            print >> sys.stderr, (
167
                                "File %s ignored by pattern %s"
168
                                % (fn, pattern))
169
                        break
170
                if bad_name:
171
                    continue
172
                out.setdefault(package, []).append(prefix+name)
173
    return out
174

    
175
setup(
176
    name = 'snf-app',
177
    version = VERSION,
178
    license = 'BSD',
179
    url = 'http://code.grnet.gr/',
180
    description = SHORT_DESCRIPTION,
181
    long_description=README + '\n\n' +  CHANGES,
182
    classifiers = CLASSIFIERS,
183

    
184
    author = 'Package author',
185
    author_email = 'author@grnet.gr',
186
    maintainer = 'Package maintainer',
187
    maintainer_email = 'maintainer@grnet.gr',
188

    
189
    namespace_packages = ['synnefo', 'synnefo.versions'],
190
    packages = PACKAGES,
191
    package_dir= {'': PACKAGES_ROOT},
192
    include_package_data = True,
193
    package_data = find_package_data('.'),
194
    zip_safe = False,
195

    
196
    install_requires = INSTALL_REQUIRES,
197
    extras_require = EXTRAS_REQUIRES,
198
    tests_require = TESTS_REQUIRES,
199

    
200
    entry_points = {
201
     'console_scripts': [
202
         'snf-dispatcher = synnefo.logic.dispatcher:main',
203
         'snf-burnin = synnefo.tools.burnin:main',
204
         'snf-admin = synnefo.tools.admin:main',
205
         'snf-cloud = synnefo.tools.cloud:main',
206
         ],
207
     'synnefo': [
208
         'default_settings = synnefo.app_settings.default',
209
         'web_apps = synnefo.app_settings:synnefo_web_apps',
210
         'web_middleware = synnefo.app_settings:synnefo_web_middleware',
211
         'urls = synnefo.app_settings.urls:urlpatterns',
212
         'web_static = synnefo.app_settings:synnefo_static_files',
213
         ]
214
      },
215
)
216