hexlib/setup.py
2021-09-19 10:57:07 -04:00

20 lines
540 B
Python

from setuptools import setup
setup(
name="hexlib",
version="1.52",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",
packages=["hexlib"],
include_package_data=True,
package_data={"": [
"data/*"
]},
install_requires=[
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard",
"u-msgpack-python", "psycopg2-binary", "fake-useragent", "bs4", "lxml", "nltk", "numpy",
"matplotlib", "scikit-learn"
]
)