-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
21 lines (19 loc) · 950 Bytes
/
pyproject.toml
File metadata and controls
21 lines (19 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[project]
name = "resolutionroyale"
version = "0.1.0"
description = "ResolutionRoyale transforms New Year's resolutions from lonely willpower battles into competitive multiplayer games. Create a lobby with friends. Everyone commits to their goals. Earn points for consistency, steal points from slackers, compete in AI-generated challenges, and bet on outcomes. Five autonomous AI agents run the experience: a trash-talking game host, a private strategist, a challenge generator, a verification system, and a dropout prevention coach."
authors = [
{name = "Your Name",email = "you@example.com"}
]
readme = "README.md"
requires-python = "^3.12"
dependencies = [
"streamlit (>=1.53.0,<2.0.0)",
"supabase (>=2.27.2,<3.0.0)",
"python-dotenv (>=1.2.1,<2.0.0)",
"pydantic (>=2.12.5,<3.0.0)",
"pydantic-settings (>=2.12.0,<3.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"