-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.39 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
66
67
68
69
70
71
[project]
name = "walstream-cdc"
version = "1.0.0"
description = "WalStream CDC - Change Data Capture system with FastAPI, PostgreSQL, Redis, and Kafka"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
# Core Framework
"fastapi",
"uvicorn[standard]",
"pydantic",
"pydantic-settings",
# Database
"sqlalchemy[asyncio]",
"asyncpg",
"alembic",
"psycopg2-binary",
# Message Queues
"redis",
"aiokafka",
"kafka-python",
# gRPC
"grpcio",
"grpcio-tools",
"protobuf",
# Authentication
"python-jose[cryptography]",
"passlib[bcrypt]",
# Observability
"prometheus-client",
# HTTP Client
"httpx",
# Utilities
"python-multipart",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"httpx",
"aiosqlite",
"ruff",
"mypy",
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["walstream_proto*", "control*", "ingestor*", "replayer*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.11"
strict = true
ignore_missing_imports = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["control/tests", "walstream-proto/tests", "tests"]