-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (28 loc) · 944 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# coding: utf-8
import os
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="regula.facesdk.webclient",
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://regulaforensics.com",
keywords=["face recognition", "facesdk", "regulaforensics", "regula"],
install_requires=[
"certifi>=2024.07.04",
"six>=1.10",
"python-dateutil>=2.5.3",
"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,
)