-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 981 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 981 Bytes
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
32
33
34
35
36
37
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "facevault"
dynamic = ["version"]
description = "Python SDK for the FaceVault identity verification API"
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
authors = [{ name = "Khreechari" }]
keywords = ["kyc", "identity", "verification", "facevault", "liveness"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Typing :: Typed",
]
dependencies = ["httpx>=0.24,<1"]
[project.urls]
Homepage = "https://facevault.id"
Documentation = "https://facevault.id/docs"
Repository = "https://github.com/khreechari/facevault-python"
[tool.hatch.version]
path = "src/facevault/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/facevault"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"