Fix fake-useragent

This commit is contained in:
simon987 2021-09-25 15:53:52 -04:00
parent 9bd1f4b799
commit c3fef7e7f8

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="hexlib",
version="1.56",
version="1.57",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",
@ -13,7 +13,10 @@ setup(
]},
install_requires=[
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard",
"u-msgpack-python", "psycopg2-binary", "fake-useragent", "bs4", "lxml", "nltk", "numpy",
"u-msgpack-python", "psycopg2-binary", "bs4", "lxml", "nltk", "numpy",
"matplotlib", "scikit-learn"
],
dependency_links=[
"git+git://github.com/Jordan9675/fake-useragent"
]
)