-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 824 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
[project]
name = "ndc-sdk-python"
version = "0.42.0"
description = "A Python SDK for creating Hasura Native Data Connectors as per the NDC spec"
readme = "README.md"
authors = [
{ name = "Daniel Harvey", email = "dan.harvey@hasura.io" }
]
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.7.0,<3.0.0",
"typing_extensions>=4.11.0,<5.0.0",
"fastapi>=0.110.2",
"uvicorn>=0.29.0",
"opentelemetry-api>=1.20.0,<2.0.0",
"opentelemetry-exporter-otlp>=1.20.0,<2.0.0",
"opentelemetry-instrumentation-fastapi>=0.44b0",
"opentelemetry-instrumentation-logging>=0.44b0",
"opentelemetry-instrumentation-requests>=0.44b0",
"opentelemetry-propagator-b3>=1.20.0,<2.0.0"
]
[project.scripts]
ndc-sdk-python = "ndc_sdk_python:main"
[build-system]
requires = ["uv_build>=0.8.2,<0.9.0"]
build-backend = "uv_build"