Add useragent option in Web

This commit is contained in:
2021-03-07 11:02:26 -05:00
parent 66d37e0be2
commit 53a03baaa4
3 changed files with 13 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.30",
version="1.31",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",
@@ -13,6 +13,6 @@ setup(
]},
install_requires=[
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard",
"u-msgpack-python", "psycopg2-binary"
"u-msgpack-python", "psycopg2-binary", "fake-useragent"
]
)