Revision a11acc65 setup.py

b/setup.py
32 32
# documentation are those of the authors and should not be
33 33
# interpreted as representing official policies, either expressed
34 34
# or implied, of GRNET S.A.
35
import distribute_setup
36
distribute_setup.use_setuptools()
35 37

  
36 38
import os
37 39
import sys
......
46 48
VERSION = get_version().replace(' ', '')
47 49

  
48 50
INSTALL_REQUIRES = [
49
    'Django==1.2.3',
51
    'Django==1.2.3, <1.3',
50 52
    'South==0.7',
51
    'httplib2==0.6.0'
53
    'httplib2==0.6.0',
54
    'snf-pithos-backend'
52 55
]
53 56

  
54 57

  
......
99 102
    Note patterns use wildcards, or can be exact paths (including
100 103
    leading ``./``), and all searching is case-insensitive.
101 104
    """
102
    
105

  
103 106
    out = {}
104 107
    stack = [(convert_path(where), '', package, only_in_packages)]
105 108
    while stack:
......
146 149
    return out
147 150

  
148 151
setup(
149
    name='Astakos',
152
    name='snf-astakos-app',
150 153
    version=VERSION,
151 154
    license='BSD',
152 155
    url='http://code.grnet.gr/projects/astakos',
......
159 162
        'Topic :: Utilities',
160 163
        'License :: OSI Approved :: BSD License',
161 164
    ],
162
    
165

  
163 166
    author='GRNET',
164 167
    author_email='astakos@grnet.gr',
165
    
168

  
166 169
    packages=find_packages(),
167 170
    include_package_data=True,
168 171
    package_data=find_package_data('.'),
169 172
    zip_safe=False,
170
    
171
    #install_requires = INSTALL_REQUIRES,
172
    
173

  
174
    install_requires = INSTALL_REQUIRES,
175

  
176
    dependency_links = ['http://docs.dev.grnet.gr/pypi'],
177

  
173 178
    entry_points={
174
        'console_scripts': ['astakos-manage = astakos.manage:main']
179
        'console_scripts': ['astakos-manage = astakos.manage:main'],
180
        'synnefo': [
181
             'default_settings = astakos.im.synnefo_settings',
182
             'web_apps = astakos.im.synnefo_settings:installed_apps',
183
             'web_middleware = astakos.im.synnefo_settings:middlware_classes',
184
             'web_context_processors = astakos.im.synnefo_settings:context_processors',
185
             'urls = astakos.urls:urlpatterns',
186
             'web_static = astakos.im.synnefo_settings:static_files'
187
        ]
175 188
    }
176 189
)
190

  

Also available in: Unified diff