File size: 815 Bytes
4f625d4 63fbae7 38961b4 4f625d4 6829252 850b1df 4f625d4 |
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 |
[project]
name = "wrdler"
version = "0.2.11"
description = "Wrdler vocabulary puzzle game - simplified version based on BattleWords with 8x6 grid, horizontal words only, no scope, 2 free letter guesses, and a settings-based daily/weekly leaderboard system. Features leaderboard UI, challenge sharing, and AI word lists."
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"streamlit>=1.51.0",
"matplotlib>=3.8",
"requests>=2.31.0",
"huggingface_hub>=0.20.0",
"python-dotenv>=1.0.0",
"transformers",
"gradio_client",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = [""]
[tool.setuptools.package-data]
"wrdler.words" = ["*.txt"]
|