forked from jking-ca/mongo-memoize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 944 Bytes
/
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='mongo-memoize',
version='0.0.5',
description='A Python decorator library for caching function results in MongoDB',
long_description=open('README.rst').read(),
author='Ikuya Yamada',
author_email='ikuya@ikuya.net',
url='http://github.com/ikuyamada/mongo-memoize/',
packages=find_packages(),
license=open('LICENSE').read(),
include_package_data=True,
keywords=[],
classifiers=(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
install_requires=[
'pymongo',
],
tests_require=[
'nose',
'mock',
],
test_suite='nose.collector'
)