forked from mailgun/expiringdict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 912 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
34
35
36
37
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()
tests_require = [
"dill",
"coverage",
"coveralls",
"mock",
"nose",
]
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="[email protected]",
url="https://github.com/mailgun/expiringdict",
license="Apache 2",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=True,
tests_require=tests_require,
install_requires=[
"typing",
],
extras_require={
"tests": tests_require,
})