diff --git a/README.md b/README.md index cd471f1..2ab7cfe 100755 --- a/README.md +++ b/README.md @@ -4,6 +4,9 @@ [![documentation](https://img.shields.io/badge/docs-en-f6858d?style=flat-square)](https://support.regulaforensics.com/hc/en-us/articles/115000916306-Documentation) [![live](https://img.shields.io/badge/live-demo-0a8c42?style=flat-square)](https://faceapi.regulaforensics.com/) +## ⚠️ Warning: Package Name Changed +## Package name has been changed from `regula.facesdk.webclient` to `regula_facesdk_webclient` + Face recognition as easy as reading two bytes. If you have any problems with or questions about this client, please contact us @@ -13,22 +16,22 @@ We are always thrilled to receive pull requests, and do our best to process them See [dev guide](./dev.md) ## Install package -`regula.facesdk.webclient` is on the Python Package Index (PyPI): +`regula_facesdk_webclient` is on the Python Package Index (PyPI): ```bash -pip install regula.facesdk.webclient +pip install regula_facesdk_webclient ``` Or using `pipenv` ```bash -pipenv install regula.facesdk.webclient +pipenv install regula_facesdk_webclient ``` ## Example Performing request: ```python -from regula.facesdk.webclient import * +from regula_facesdk_webclient import * with open("face1.jpg", "rb") as f: face_1_bytes = f.read() diff --git a/setup.py b/setup.py index eb26431..a898632 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ long_description = fh.read() setup( - name="regula.facesdk.webclient", + name="regula_facesdk_webclient", version=os.getenv("PACKAGE_VERSION_TO_PUBLISH", "6.2dev"), python_requires=">=3.5", description="Regula's FaceSDK web python client",