Statistics
| Branch: | Tag: | Revision:

root / setup.py @ c3c33dd0

History | View | Annotate | Download (6.9 kB)

1
# Copyright 2012, 2013 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
import distribute_setup
35
distribute_setup.use_setuptools()
36

    
37
import os
38
import sys
39

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

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

    
46
try:
47
    from devflow.version import __version__
48
except ImportError:
49
    # Bootstrap devflow
50
    from devflow.versioning import update_version
51
    update_version()
52
    from devflow.version import __version__
53

    
54
# Package info
55
VERSION = __version__
56
README = open(os.path.join(HERE, 'README')).read()
57
CHANGES = open(os.path.join(HERE, 'Changelog')).read()
58
SHORT_DESCRIPTION = 'A set of tools to ease versioning and use of git flow.'
59

    
60
PACKAGES_ROOT = '.'
61
PACKAGES = find_packages(PACKAGES_ROOT)
62

    
63
# Package meta
64
CLASSIFIERS = []
65

    
66
# Package requirements
67
INSTALL_REQUIRES = [
68
    'gitpython', 'sh', 'configobj', 'ansicolors'
69
]
70

    
71
# Provided as an attribute, so you can append to these instead
72
# of replicating them:
73
standard_exclude = ["*.py", "*.pyc", "*$py.class", "*~", ".*", "*.bak"]
74
standard_exclude_directories = [".*", "CVS", "_darcs", "./build", "./dist",
75
                                "EGG-INFO", "*.egg-info"]
76

    
77
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
78
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
79
# Note: you may want to copy this into your setup.py file verbatim, as
80
# you can't import this from another package, when you don't know if
81
# that package is installed yet.
82
def find_package_data(
83
    where=".",
84
    package="",
85
    exclude=standard_exclude,
86
    exclude_directories=standard_exclude_directories,
87
    only_in_packages=True,
88
    show_ignored=False):
89
    """
90
    Return a dictionary suitable for use in ``package_data``
91
    in a distutils ``setup.py`` file.
92

93
    The dictionary looks like::
94

95
        {"package": [files]}
96

97
    Where ``files`` is a list of all the files in that package that
98
    don"t match anything in ``exclude``.
99

100
    If ``only_in_packages`` is true, then top-level directories that
101
    are not packages won"t be included (but directories under packages
102
    will).
103

104
    Directories matching any pattern in ``exclude_directories`` will
105
    be ignored; by default directories with leading ``.``, ``CVS``,
106
    and ``_darcs`` will be ignored.
107

108
    If ``show_ignored`` is true, then all the files that aren"t
109
    included in package data are shown on stderr (for debugging
110
    purposes).
111

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

    
161
setup(
162
    name='devflow',
163
    version=VERSION,
164
    license='BSD',
165
    url='http://www.synnefo.org/',
166
    description=SHORT_DESCRIPTION,
167
    long_description=README + '\n\n' + CHANGES,
168
    classifiers=CLASSIFIERS,
169

    
170
    author='Synnefo development team',
171
    author_email='synnefo-devel@googlegroups.com',
172
    maintainer='Synnefo development team',
173
    maintainer_email='synnefo-devel@googlegroups.com',
174

    
175
    packages=PACKAGES,
176
    package_dir={'': PACKAGES_ROOT},
177
    include_package_data=True,
178
    package_data=find_package_data('.'),
179
    zip_safe=False,
180

    
181
    install_requires=INSTALL_REQUIRES,
182

    
183
    entry_points={
184
     'console_scripts': [
185
         'devflow-version=devflow.versioning:main',
186
         'devflow-bump-version=devflow.versioning:bump_version_main',
187
         'devflow-update-version=devflow.versioning:update_version',
188
         'devflow-autopkg=devflow.autopkg:main',
189
         'devflow-flow=devflow.flow:main',
190
         ],
191
      },
192
)