-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (54 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
67 lines (54 loc) · 1.36 KB
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
59
60
61
62
63
64
65
[project]
name = "gr4vy"
version = "2.0.8"
description = "Python Client SDK Generated by Speakeasy."
authors = [{ name = "Gr4vy" },]
readme = "README-PYPI.md"
requires-python = ">=3.10"
dependencies = [
"PyJWT (>=2.10.1,<3.0.0)",
"cryptography (>=45.0.7,<46.0.0)",
"httpcore >=1.0.9",
"httpx >=0.28.1",
"jsonpath-python >=1.0.6",
"pydantic >=2.11.2",
"python-jose (>=3.4.0,<4.0.0)",
]
[tool.poetry]
repository = "https://github.com/gr4vy/gr4vy-python.git"
packages = [
{ include = "gr4vy", from = "src" }
]
include = ["py.typed", "src/gr4vy/py.typed"]
[tool.setuptools.package-data]
"*" = ["py.typed", "src/gr4vy/py.typed"]
[virtualenvs]
in-project = true
[tool.poetry.group.dev.dependencies]
freezegun = "^1.5.1"
mypy = "==1.15.0"
pylint = "==3.2.3"
pyright = "==1.1.398"
pytest = "^8.3.5"
requests = "^2.23.2"
types-Pygments = "^2.19.0.20250305"
types-python-jose = "^3.4.0.20250224"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
pythonpath = ["src"]
[tool.mypy]
disable_error_code = "misc"
explicit_package_bases = true
mypy_path = "src"
[[tool.mypy.overrides]]
module = "typing_inspect"
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "jsonpath"
ignore_missing_imports = true
[tool.pyright]
venvPath = "."
venv = ".venv"