~justin-fathomdb/nova/justinsb-openstack-api-volumes

« back to all changes in this revision

Viewing changes to vendor/redis-py/setup.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
"""
 
4
@file setup.py
 
5
@author Andy McCurdy
 
6
@date 2/12/2010
 
7
@brief Setuptools configuration for redis client
 
8
"""
 
9
 
 
10
version = '1.36'
 
11
 
 
12
sdict = {
 
13
    'name' : 'redis',
 
14
    'version' : version,
 
15
    'description' : 'Python client for Redis key-value store',
 
16
    'long_description' : 'Python client for Redis key-value store',
 
17
    'url': 'http://github.com/andymccurdy/redis-py',
 
18
    'download_url' : 'http://cloud.github.com/downloads/andymccurdy/redis-py/redis-%s.tar.gz' % version,
 
19
    'author' : 'Andy McCurdy',
 
20
    'author_email' : 'sedrik@gmail.com',
 
21
    'maintainer' : 'Andy McCurdy',
 
22
    'maintainer_email' : 'sedrik@gmail.com',
 
23
    'keywords' : ['Redis', 'key-value store'],
 
24
    'license' : 'MIT',
 
25
    'packages' : ['redis'],
 
26
    'test_suite' : 'tests.all_tests',
 
27
    'classifiers' : [
 
28
        'Development Status :: 4 - Beta',
 
29
        'Environment :: Console',
 
30
        'Intended Audience :: Developers',
 
31
        'License :: OSI Approved :: MIT License',
 
32
        'Operating System :: OS Independent',
 
33
        'Programming Language :: Python'],
 
34
}
 
35
 
 
36
try:
 
37
    from setuptools import setup
 
38
except ImportError:
 
39
    from distutils.core import setup
 
40
    
 
41
setup(**sdict)
 
42