Statistics
| Branch: | Tag: | Revision:

root / snf-app / setup.py @ 2ce0636e

History | View | Annotate | Download (7.4 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.version import vcs_version
44

    
45
HERE = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
46

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

    
53
PACKAGES_ROOT = '.'
54
PACKAGES = find_packages(PACKAGES_ROOT, exclude=['okeanos_site'])
55

    
56
# Package meta
57
CLASSIFIERS = []
58

    
59
# Package requirements
60
INSTALL_REQUIRES = [
61
    'Django==1.2.4',
62
    'simplejson==2.1.3',
63
    'pycurl==7.19.0',
64
    'python-dateutil==1.4.1',
65
    'IPy==0.75',
66
    'south==0.7.1',
67
    'pycrypto==2.1.0',
68
    'amqplib==0.6.1',
69
    'python-daemon==1.5.5'
70
]
71

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

    
79
TESTS_REQUIRES = [
80
]
81

    
82

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

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

106
    The dictionary looks like::
107

108
        {"package": [files]}
109

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

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

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

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

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

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

    
182
    author = 'Package author',
183
    author_email = 'author@grnet.gr',
184
    maintainer = 'Package maintainer',
185
    maintainer_email = 'maintainer@grnet.gr',
186

    
187
    packages = PACKAGES,
188
    package_dir= {'': PACKAGES_ROOT},
189
    include_package_data = True,
190
    package_data = find_package_data('.'),
191
    zip_safe = False,
192

    
193
    install_requires = INSTALL_REQUIRES,
194
    extras_require = EXTRAS_REQUIRES,
195
    tests_require = TESTS_REQUIRES,
196

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