1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
from setuptools import setup, find_packages
try:
import md5 # fix for "No module named _md5" error
except ImportError:
# python 3 moved md5
from hashlib import md5
with open("README.rst") as f:
long_description = f.read()
setup(name='expiringdict',
version='1.1.4',
description="Dictionary with auto-expiring values for caching purposes",
long_description=long_description,
author='Anton Efimenko',
author_email='anton@mailgunhq.com',
url='https://github.com/mailgun/expiringdict',
license='Apache 2',
packages=find_packages(exclude=['tests']),
include_package_data=True,
zip_safe=True,
extras_require={'test': ['nose', 'mock', 'coverage']})
|