-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (43 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
53 lines (43 loc) · 1.26 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
[project]
name = "glean-api-client"
version = "0.7.1"
description = "Python Client SDK Generated by Speakeasy."
authors = [{ name = "Glean Technologies, Inc." }]
license = "MIT"
# NOTE: scripts/prepare_readme.py tweaks this to point to README-PYPI.md for publication
# The published readme has relative URLs converted to absolute URLs for PyPI compatibility
readme = "README.md"
requires-python = ">=3.9"
dependencies = ["httpx >=0.28.1", "pydantic >=2.11.2"]
[tool.poetry]
packages = [{ include = "glean", from = "src" }]
include = ["py.typed", "src/glean/py.typed"]
[tool.setuptools.package-data]
"*" = ["py.typed", "src/glean/py.typed"]
[virtualenvs]
in-project = true
[tool.poetry.group.dev.dependencies]
mypy = "==1.15.0"
pylint = "==3.2.3"
pytest = "^8.3.4"
pytest-asyncio = "^0.25.3"
pytest-xdist = "^3.6.1"
[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"