diff options
Diffstat (limited to 'shared/pyproject.toml')
| -rw-r--r-- | shared/pyproject.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/shared/pyproject.toml b/shared/pyproject.toml new file mode 100644 index 0000000..bd09d3e --- /dev/null +++ b/shared/pyproject.toml @@ -0,0 +1,25 @@ +[project] +name = "trading-shared" +version = "0.1.0" +description = "Shared models, events, and utilities for trading platform" +requires-python = ">=3.12" +dependencies = [ + "pydantic>=2.0", + "pydantic-settings>=2.0", + "redis>=5.0", + "asyncpg>=0.29", +] + +[project.optional-dependencies] +dev = [ + "pytest>=8.0", + "pytest-asyncio>=0.23", + "ruff>=0.4", +] + +[build-system] +requires = ["hatchling"] +build-backend = "hatchling.build" + +[tool.hatch.build.targets.wheel] +packages = ["src/shared"] |
