Add plot_freq_bar

This commit is contained in:
2021-06-23 19:37:22 -04:00
parent 3238f92e4d
commit 33e9734991
3 changed files with 35 additions and 3 deletions

View File

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