summaryrefslogtreecommitdiff
path: root/shared/pyproject.toml
blob: eb74a1191d126cdc97dcdd9e87835342f161a7a9 (plain)
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
[project]
name = "trading-shared"
version = "0.1.0"
description = "Shared models, events, and utilities for trading platform"
requires-python = ">=3.12"
dependencies = [
    "pydantic>=2.8,<3",
    "pydantic-settings>=2.0,<3",
    "redis>=5.0,<6",
    "asyncpg>=0.29,<1",
    "sqlalchemy[asyncio]>=2.0,<3",
    "alembic>=1.13,<2",
    "structlog>=24.0,<25",
    "prometheus-client>=0.20,<1",
    "pyyaml>=6.0,<7",
    "aiohttp>=3.9,<4",
    "rich>=13.0,<14",
]

[project.optional-dependencies]
dev = ["pytest>=8.0,<9", "pytest-asyncio>=0.23,<1", "ruff>=0.4,<1"]
claude = ["anthropic>=0.40,<1"]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[tool.hatch.build.targets.wheel]
packages = ["src/shared"]