mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-16 00:26:43 +00:00
14 lines
273 B
Python
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"
|
|
]
|
|
)
|