You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
796 B
35 lines
796 B
[project]
|
|
name = "mirosociety"
|
|
version = "0.1.0"
|
|
description = "Define the rules of a society. Watch what emerges."
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"fastapi>=0.115.0",
|
|
"uvicorn[standard]>=0.30.0",
|
|
"openai>=1.0.0",
|
|
"httpx>=0.27.0",
|
|
"pydantic>=2.0.0",
|
|
"pydantic-settings>=2.0.0",
|
|
"aiosqlite>=0.20.0",
|
|
"python-dotenv>=1.0.0",
|
|
"sse-starlette>=2.0.0",
|
|
"eval_type_backport>=0.2.0",
|
|
"duckduckgo-search>=6.0.0",
|
|
"darts>=0.42.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
test = ["pytest>=7.0", "pytest-asyncio>=0.21"]
|
|
|
|
[tool.pytest.ini_options]
|
|
asyncio_mode = "auto"
|
|
filterwarnings = [
|
|
"ignore::pytest.PytestWarning",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["app"]
|
|
|