Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Sep 13, 2024
1 parent 9c0384d commit b21750b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 60 deletions.
1 change: 0 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ requests = ">=2.32.3"

[dev-packages]
setuptools = ">=21.0.0"
pipenv-setup = "*"
wheel = "*"
twine = "*"
chardet = "*"
Expand Down
56 changes: 1 addition & 55 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,23 @@

setup(
name="regula.facesdk.webclient",
version=os.getenv("PACKAGE_VERSION_TO_PUBLISH", "5.1dev"),
version=os.getenv("PACKAGE_VERSION_TO_PUBLISH", "6.2dev"),
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",
url="https://regulaforensics.com",
keywords=["face recognition", "facesdk", "regulaforensics", "regula"],
install_requires=[
"certifi>=2023.7.22",
"certifi>=2024.07.04",
"six>=1.10",
"python-dateutil>=2.5.3",
"urllib3>=1.15.1"
"urllib3>=2.2.2",
"vistir>=0.4.0, <=0.6.1",
"idna==3.7",
"requests>=2.32.3",
],
packages=find_packages(exclude=["test", "tests", "example"]),
include_package_data=True,
Expand Down

0 comments on commit b21750b

Please sign in to comment.