Revision 05f6d5c0 setup.py

b/setup.py
1 1
#!/usr/bin/env python
2 2

  
3
# Copyright 2011 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

  
3 36
import os
37
import sys
38

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

  
5 42
from setuptools import setup, find_packages
6 43
from pithos import get_version
7 44

  
8 45

  
9
def read(fname):
10
    return open(os.path.join(os.path.dirname(__file__), fname)).read()
11

  
12

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

  
15 48
INSTALL_REQUIRES = [
......
21 54
    'psycopg2==2.2.1'
22 55
]
23 56

  
57

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

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

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

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

  
83
    The dictionary looks like::
84

  
85
        {'package': [files]}
86

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

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

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

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

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

  
24 151
setup(
25 152
    name='Pithos',
26 153
    version=VERSION,
154
    license='BSD',
155
    url='http://code.grnet.gr/projects/pithos',
27 156
    description='Pithos file storage service and tools',
28 157
	long_description=read('README'),
29
    author='GRNET',
30
    author_email='pithos@grnet.gr',
31
    url='http://code.grnet.gr/projects/pithos',
32
    packages=find_packages(),
33
    #install_requires = INSTALL_REQUIRES,
34
    license='BSD',
35 158
    classifiers=[
36 159
        'Development Status :: 3 - Alpha',
37 160
        'Operating System :: OS Independent',
......
39 162
        'Topic :: Utilities',
40 163
        'License :: OSI Approved :: BSD License',
41 164
    ],
165
    
166
    author='GRNET',
167
    author_email='pithos@grnet.gr',
168
    
169
    packages=find_packages(),
170
    include_package_data=True,
171
    package_data=find_package_data('.'),
172
    zip_safe=False,
173
    
174
    #install_requires = INSTALL_REQUIRES,
175
    
42 176
    entry_points={
43 177
        'console_scripts': ['pithos-manage = pithos.manage:main']
44 178
    },
......
49 183
        'pithos/tools/pithos-test'
50 184
    ]
51 185
)
186

  

Also available in: Unified diff