forked from clerk/clerk-sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
60 lines (48 loc) · 1.25 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[project]
name = "clerk-backend-api"
version = "1.7.1"
description = "Python Client SDK for clerk.dev"
authors = [{ name = "Clerk" },]
readme = "README-PYPI.md"
requires-python = ">=3.9"
dependencies = [
"cryptography (>=43.0.1,<44.0.0)",
"eval-type-backport >=0.2.0",
"httpx >=0.28.1",
"jsonpath-python >=1.0.6",
"pydantic >=2.10.3",
"pyjwt (>=2.9.0,<3.0.0)",
"python-dateutil >=2.8.2",
"typing-inspect >=0.9.0",
]
[tool.poetry]
repository = "https://github.com/clerk/clerk-sdk-python.git"
packages = [
{ include = "clerk_backend_api", from = "src" }
]
include = ["py.typed", "src/clerk_backend_api/py.typed"]
[tool.setuptools.package-data]
"*" = ["py.typed", "src/clerk_backend_api/py.typed"]
[virtualenvs]
in-project = true
[tool.poetry.group.dev.dependencies]
mypy = "==1.14.1"
pylint = "==3.2.3"
pytest = "^8.3.3"
types-python-dateutil = "^2.9.0.20240316"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.mypy]
disable_error_code = "misc"
[[tool.mypy.overrides]]
module = "typing_inspect"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "jsonpath"
ignore_missing_imports = true
[tool.pyright]
venvPath = "."
venv = ".venv"