mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-04 02:12:59 +00:00
21 lines
611 B
Python
21 lines
611 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="hexlib",
|
|
version="1.64",
|
|
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", "bs4", "lxml", "nltk", "numpy",
|
|
"matplotlib", "scikit-learn", "fake-useragent @ git+https://github.com/Jordan9675/fake-useragent",
|
|
"requests"
|
|
]
|
|
)
|