little update

This commit is contained in:
2026-08-12 21:11:39 +03:00
parent e3d5de12fe
commit 3af436d48a
37 changed files with 2299 additions and 9 deletions

23
pyproject.toml Normal file
View File

@@ -0,0 +1,23 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "kernel-consumer"
version = "0.1.0"
requires-python = ">=3.11"
dependencies = [
"nats-py>=2.9,<3",
"pydantic>=2.9,<3",
"SQLAlchemy>=2.0,<3",
"alembic>=1.14,<2",
"python-dotenv>=1.0,<2",
]
[project.scripts]
kernel-consumer = "kernel_consumer.main:main"
init-nats = "scripts.init_nats:main"
fire-game-cleanup = "scripts.fire_game_cleanup:main"
[tool.pytest.ini_options]
pythonpath = ["src"]