-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 859 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 859 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
29
30
31
32
33
34
35
36
37
38
39
40
[project]
name = ""
version = ""
description = ""
authors = [{name = "Victor Matekole", email = "github@matekole.com"},]
dependencies = [
"python-dotenv>=1.0.1",
"websocket-client>=1.7.0",
"confluent-kafka>=2.3.0",
"pydantic>=2.6.4",
"dataclasses-avroschema>=0.57.4",
"google-cloud-bigquery>=3.19.0",
"prefect>=2.14.13",
"pydantic-settings>=2.2.1",
"dbt-bigquery>=1.7.7",
"sqlglot>=23.10.0",
"click>=8.1.7",
]
requires-python = ">=3.9"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dev = [
"pytest>=8.0.2",
"rich>=13.7.1",
"requests>=2.31.0",
"fastavro>=1.9.4",
"pytest-mock>=3.14.0",
"coverage>=7.4.4",
"pytest-timeout>=2.3.1",
]
[tool.black]
skip-string-normalization = true
[tool.pytest.ini_options]
pythonpath = ["./src"]
log_cli = true
[tool.pdm]