Statistics
| Branch: | Tag: | Revision:

root / setup.py @ 2e662088

History | View | Annotate | Download (6.4 kB)

1
#!/usr/bin/env python
2

    
3
# Copyright 2011-2012 GRNET S.A. All rights reserved.
4
#
5
# Redistribution and use in source and binary forms, with or
6
# without modification, are permitted provided that the following
7
# conditions are met:
8
#
9
#   1. Redistributions of source code must retain the above
10
#      copyright notice, this list of conditions and the following
11
#      disclaimer.
12
#
13
#   2. Redistributions in binary form must reproduce the above
14
#      copyright notice, this list of conditions and the following
15
#      disclaimer in the documentation and/or other materials
16
#      provided with the distribution.
17
#
18
# THIS SOFTWARE IS PROVIDED BY GRNET S.A. ``AS IS'' AND ANY EXPRESS
19
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
21
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GRNET S.A OR
22
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
25
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
26
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
28
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29
# POSSIBILITY OF SUCH DAMAGE.
30
#
31
# The views and conclusions contained in the software and
32
# documentation are those of the authors and should not be
33
# interpreted as representing official policies, either expressed
34
# or implied, of GRNET S.A.
35

    
36
import os
37
import sys
38

    
39
from fnmatch import fnmatchcase
40
from distutils.util import convert_path
41

    
42
from setuptools import setup, find_packages
43
from pithos import get_version
44

    
45

    
46
VERSION = get_version().replace(' ', '')
47

    
48
INSTALL_REQUIRES = [
49
    'Django==1.2.3',
50
    'SQLAlchemy==0.6.3',
51
    'MySQL-python==1.2.2',
52
    'psycopg2==2.2.1'
53
]
54

    
55

    
56
def read(fname):
57
    return open(os.path.join(os.path.dirname(__file__), fname)).read()
58

    
59
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
60
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
61
# Note: you may want to copy this into your setup.py file verbatim, as
62
# you can't import this from another package, when you don't know if
63
# that package is installed yet.
64

    
65
# Provided as an attribute, so you can append to these instead
66
# of replicating them:
67
standard_exclude = ('*.py', '*.pyc', '*$py.class', '*~', '.*', '*.bak')
68
standard_exclude_directories = ('.*', 'CVS', '_darcs', './build',
69
                                './dist', 'EGG-INFO', '*.egg-info')
70

    
71
def find_package_data(
72
    where='.', package='',
73
    exclude=standard_exclude,
74
    exclude_directories=standard_exclude_directories,
75
    only_in_packages=True,
76
    show_ignored=False):
77
    """
78
    Return a dictionary suitable for use in ``package_data``
79
    in a distutils ``setup.py`` file.
80

81
    The dictionary looks like::
82

83
        {'package': [files]}
84

85
    Where ``files`` is a list of all the files in that package that
86
    don't match anything in ``exclude``.
87

88
    If ``only_in_packages`` is true, then top-level directories that
89
    are not packages won't be included (but directories under packages
90
    will).
91

92
    Directories matching any pattern in ``exclude_directories`` will
93
    be ignored; by default directories with leading ``.``, ``CVS``,
94
    and ``_darcs`` will be ignored.
95

96
    If ``show_ignored`` is true, then all the files that aren't
97
    included in package data are shown on stderr (for debugging
98
    purposes).
99

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

    
149
setup(
150
    name='Pithos',
151
    version=VERSION,
152
    license='BSD',
153
    url='http://code.grnet.gr/projects/pithos',
154
    description='Pithos file storage service and tools',
155
        long_description=read('README'),
156
    classifiers=[
157
        'Development Status :: 3 - Alpha',
158
        'Operating System :: OS Independent',
159
        'Programming Language :: Python',
160
        'Topic :: Utilities',
161
        'License :: OSI Approved :: BSD License',
162
    ],
163
    
164
    author='GRNET',
165
    author_email='pithos@grnet.gr',
166
    
167
    packages=find_packages(),
168
    include_package_data=True,
169
    package_data=find_package_data('.'),
170
    zip_safe=False,
171
    
172
    #install_requires = INSTALL_REQUIRES,
173
    
174
    entry_points={
175
        'console_scripts': ['pithos-manage = pithos.manage:main']
176
    },
177
    scripts=[
178
        'pithos/tools/pithos-sh',
179
        'pithos/tools/pithos-sync',
180
        'pithos/tools/pithos-fs',
181
        'pithos/tools/pithos-test'
182
    ]
183
)