add volatile state

This commit is contained in:
2020-05-22 18:56:35 -04:00
parent c0472efacc
commit f92776e646
3 changed files with 78 additions and 2 deletions

View File

@@ -2,12 +2,12 @@ from setuptools import setup
setup(
name="hexlib",
version="1.7",
version="1.8",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",
packages=["hexlib"],
install_requires=[
"ImageHash", "influxdb", "siphash", "python-dateutil"
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "ujson"
]
)