-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
56 lines (52 loc) · 1.25 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
[project]
name = "etl-api-loader"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"azure-identity>=1.25.1",
"azure-keyvault-secrets>=4.10.0",
"boto3>=1.42.4",
"google-cloud-secret-manager>=2.25.0",
"httpx[http2]>=0.28.1",
"opentelemetry-api>=1.39.0",
"opentelemetry-exporter-otlp-proto-http>=1.39.0",
"opentelemetry-sdk>=1.39.0",
"orjson>=3.11.5",
"pendulum>=3.1.0",
"psutil>=7.1.3",
"psycopg[binary]>=3.3.2",
"pydantic>=2.12.5",
"pydantic-extra-types[pendulum]>=2.10.6",
"pydantic-settings>=2.12.0",
"pymysql>=1.1.2",
"pyodbc>=5.3.0",
"rich>=14.2.0",
"sqlalchemy-bigquery>=1.16.0",
"sqlmodel>=0.0.27",
"structlog>=25.5.0",
"typer>=0.20.0",
"uvloop>=0.22.1",
"xxhash>=3.6.0",
]
[project.scripts]
apiloader = "src.cli.main:main"
[dependency-groups]
dev = [
"pre-commit>=4.5.0",
"pytest>=9.0.1",
"pytest-asyncio>=1.3.0",
"pytest-httpx>=0.36.0",
"pytest-xdist>=3.8.0",
"ruff>=0.14.8",
"scalene>=1.5.55",
]
[tool.pytest.ini_options]
testpaths = [ "src/tests" ]
pythonpath = [ "." ]
filterwarnings = [
"ignore::UserWarning:pydantic.main",
]
[tool.ruff]
lint.select = ["I"]