-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 802 Bytes
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
[project]
name = "omnia"
version = "0.1.0"
description = "LLM-assisted RPG engine with structured world state, intent driven simulations, and FastAPI/Mongo backend."
authors = [
{name = "Aditya Gupta",email = "mail@adityagupta.dev"}
]
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"pydantic (>=2.12.5,<3.0.0)",
"fastapi (>=0.124.0,<0.125.0)",
"uvicorn (>=0.38.0,<0.39.0)",
"motor (>=3.7.1,<4.0.0)",
"pymongo (>=4.15.5,<5.0.0)",
"pydantic-settings (>=2.12.0,<3.0.0)"
]
[tool.poetry]
packages = [{include = "omnia", from = "src"}]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups]
dev = [
"pre-commit (>=4.5.0,<5.0.0)",
"ruff (>=0.14.8,<0.15.0)",
"mypy (>=1.19.0,<2.0.0)"
]