Fix git clone

This commit is contained in:
simon987 2021-11-02 14:38:12 -04:00
parent 2f6c2822b6
commit 408735a926
2 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
Misc utility methods in Python Misc utility methods in Python
``` ```
git+git://github.com/simon987/hexlib.git git+https://github.com/simon987/hexlib.git
``` ```

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup( setup(
name="hexlib", name="hexlib",
version="1.63", version="1.64",
description="Misc utility methods", description="Misc utility methods",
author="simon987", author="simon987",
author_email="me@simon987.net", author_email="me@simon987.net",
@ -14,7 +14,7 @@ setup(
install_requires=[ install_requires=[
"ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard", "ImageHash", "influxdb", "siphash", "python-dateutil", "redis", "orjson", "zstandard",
"u-msgpack-python", "psycopg2-binary", "bs4", "lxml", "nltk", "numpy", "u-msgpack-python", "psycopg2-binary", "bs4", "lxml", "nltk", "numpy",
"matplotlib", "scikit-learn", "fake-useragent @ git+git://github.com/Jordan9675/fake-useragent", "matplotlib", "scikit-learn", "fake-useragent @ git+https://github.com/Jordan9675/fake-useragent",
"requests" "requests"
] ]
) )