-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from regulaforensics/86e97fb7
update-clients
- Loading branch information
Showing
10 changed files
with
647 additions
and
251 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,21 +8,20 @@ | |
|
||
setup( | ||
name="regula.facesdk.webclient", | ||
version=os.getenv("PACKAGE_VERSION_TO_PUBLISH", "unknown"), | ||
version=os.getenv("PACKAGE_VERSION_TO_PUBLISH", "5.1dev"), | ||
python_requires=">=3.5", | ||
description="Regula's FaceSDK web python client", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
author="Regula Forensics, Inc.", | ||
author_email="[email protected]", | ||
url="https://mobile.regulaforensics.com", | ||
keywords=["face recognition", "facesdk", "regulaforensics", "regula",], | ||
keywords=["face recognition", "facesdk", "regulaforensics", "regula"], | ||
install_requires=[ | ||
"certifi==2022.6.15.1", | ||
"future==0.18.2", | ||
"python-dateutil==2.8.1", | ||
"six==1.15.0", | ||
"urllib3==1.26.5", | ||
"six>=1.10", | ||
"python-dateutil>=2.5.3", | ||
"urllib3>=1.15.1" | ||
], | ||
packages=find_packages(exclude=["test", "tests", "example"]), | ||
include_package_data=True, | ||
|