mirror of
https://github.com/simon987/hexlib.git
synced 2025-04-18 01:16:43 +00:00
14 lines
263 B
Python
14 lines
263 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="hexlib",
|
|
version="1.0",
|
|
description="Misc utility methods",
|
|
author="simon987",
|
|
author_email="me@simon987.net",
|
|
packages=["hexlib"],
|
|
install_requires=[
|
|
"ImageHash", "influxdb",
|
|
]
|
|
)
|