forked from iamteem/redisco
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (31 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env python
import os
version = '0.1.1'
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='redisco',
version=version,
description='Python Containers and Simple Models for Redis',
url='https://github.com/iamteem/redisco',
download_url='',
long_description=read('README.rst'),
author='Tim Medina',
author_email='[email protected]',
maintainer='Tim Medina',
maintainer_email='[email protected]',
keywords=['Redis', 'model', 'container'],
license='MIT',
packages=['redisco', 'redisco.models'],
test_suite='tests.all_tests',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python'],
)