24 lines
504 B
TOML
24 lines
504 B
TOML
[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"]
|