hexlib/setup.py
2019-11-23 10:31:34 -05:00

14 lines
273 B
Python

from setuptools import setup
setup(
name="hexlib",
version="1.1",
description="Misc utility methods",
author="simon987",
author_email="me@simon987.net",
packages=["hexlib"],
install_requires=[
"ImageHash", "influxdb", "siphash"
]
)